Index: sources/gui/qml/globals/Variables.qml =================================================================== diff -u -r76f632ce5a9039ae662d9a52286079b772f8ae7f -r25e7d601d795c1622dd4c6e437b3dce91a676e83 --- sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 76f632ce5a9039ae662d9a52286079b772f8ae7f) +++ sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 25e7d601d795c1622dd4c6e437b3dce91a676e83) @@ -137,12 +137,10 @@ readonly property int arterialValueMax : +600; ///< PRS362 const // - Artrial - Adjust pressure limit range and manufacturing default - Low readonly property int arterialLimitLowMin : -300; ///< PRS354 const - // ref to Model // arterialLimitLowMin : -300; ///< PRS354 default \ref MAdjustPressuresLimitsReq - readonly property int arterialLimitLowMax : +200; ///< PRS354 const + readonly property int arterialLimitLowMax : 0; ///< PRS354 const // - Artrial - Adjust pressure limit range and manufacturing default - High readonly property int arterialLimitHighMin : -300; ///< PRS355 const - // ref to Model // arterialLimitHighMin : +100; ///< PRS355 default \ref MAdjustPressuresLimitsReq - readonly property int arterialLimitHighMax : +200; ///< PRS355 const + readonly property int arterialLimitHighMax : 0; ///< PRS355 const // - Artrial - Adjust pressure limit resolution readonly property int arterialLimitStep : +10; ///< PRS354,PRS355 // has to be the same since it's on the same line scale readonly property int arterialLimitGap : +30; @@ -152,12 +150,10 @@ readonly property int venousValueMin : -100; ///< PRS361 const readonly property int venousValueMax : +700; ///< PRS361 const // - Venous - Adjust pressure limit range and manufacturing default - Low - readonly property int venousLimitLowMin : -100; ///< PRS356 const - // ref to Model // venousLimitLowDef : -100; ///< PRS356 default \ref MAdjustPressuresLimitsReq + readonly property int venousLimitLowMin : +20; ///< PRS356 const readonly property int venousLimitLowMax : +600; ///< PRS356 const // - Venous - Adjust pressure limit range and manufacturing default - High - readonly property int venousLimitHighMin : +100; ///< PRS357 const - // ref to Model // venousLimitHighDef : +400; ///< PRS357 default \ref MAdjustPressuresLimitsReq + readonly property int venousLimitHighMin : +20; ///< PRS357 const readonly property int venousLimitHighMax : +600; ///< PRS357 const // - Venous - Adjust pressure limit resolution readonly property int venousLimitStep : +10; ///< PRS356,PRS357 // has to be the same since it's on the same line scale Index: sources/model/hd/adjustment/MTreatmentAdjustRequests.h =================================================================== diff -u -r93b6bd48e2aec1fca4f2b5b79dcefffa49e9ce16 -r25e7d601d795c1622dd4c6e437b3dce91a676e83 --- sources/model/hd/adjustment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision 93b6bd48e2aec1fca4f2b5b79dcefffa49e9ce16) +++ sources/model/hd/adjustment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision 25e7d601d795c1622dd4c6e437b3dce91a676e83) @@ -339,8 +339,8 @@ public: static const qint32 ArterialLimitLowDef = -300; // PRS354 manufacturing default - static const qint32 ArterialLimitHighDef = +100; // PRS355 manufacturing default - static const qint32 VenousLimitLowDef = -100; // PRS356 manufacturing default + static const qint32 ArterialLimitHighDef = 0; // PRS355 manufacturing default + static const qint32 VenousLimitLowDef = +20; // PRS356 manufacturing default static const qint32 VenousLimitHighDef = +400; // PRS357 manufacturing default public: Index: sources/view/VTreatmentCreate.h =================================================================== diff -u -rf05549765024eec65ddd3e3e203560334c655ecb -r25e7d601d795c1622dd4c6e437b3dce91a676e83 --- sources/view/VTreatmentCreate.h (.../VTreatmentCreate.h) (revision f05549765024eec65ddd3e3e203560334c655ecb) +++ sources/view/VTreatmentCreate.h (.../VTreatmentCreate.h) (revision 25e7d601d795c1622dd4c6e437b3dce91a676e83) @@ -121,40 +121,40 @@ const qreal dialysateTemp_Res = 0.5 ; // PRS 353 // mmHg - const qint32 arterialPressureLimitLow_Def = -300 ; // PRS 354 const qint32 arterialPressureLimitLow_Min = -300 ; // PRS 354 - const qint32 arterialPressureLimitLow_Max = 200 ; // PRS 354 - const qint32 arterialPressureLimitLow_Res = 10 ; // PRS 354 + const qint32 arterialPressureLimitLow_Max = 0 ; // PRS 354 + const qint32 arterialPressureLimitLow_Res = 10 ; // PRS 354 + const qint32 arterialPressureLimitLow_Def = -300 ; // PRS 354 // mmHg - const qint32 arterialPressureLimitHigh_Def = 100 ; // PRS 355 const qint32 arterialPressureLimitHigh_Min = -300 ; // PRS 355 - const qint32 arterialPressureLimitHigh_Max = 200 ; // PRS 355 - const qint32 arterialPressureLimitHigh_Res = 10 ; // PRS 355 + const qint32 arterialPressureLimitHigh_Max = 0 ; // PRS 355 + const qint32 arterialPressureLimitHigh_Res = 10 ; // PRS 355 + const qint32 arterialPressureLimitHigh_Def = 0 ; // PRS 355 // mmHg - const qint32 venousPressureLimitLow_Def = -100 ; // PRS 356 - const qint32 venousPressureLimitLow_Min = -100 ; // PRS 356 - const qint32 venousPressureLimitLow_Max = 600 ; // PRS 356 - const qint32 venousPressureLimitLow_Res = 10 ; // PRS 356 + const qint32 venousPressureLimitLow_Min = 20 ; // PRS 356 + const qint32 venousPressureLimitLow_Max = 600 ; // PRS 356 + const qint32 venousPressureLimitLow_Res = 10 ; // PRS 356 + const qint32 venousPressureLimitLow_Def = 20 ; // PRS 356 // mmHg - const qint32 venousPressureLimitHigh_Def = 400 ; // PRS 357 - const qint32 venousPressureLimitHigh_Min = 100 ; // PRS 357 - const qint32 venousPressureLimitHigh_Max = 600 ; // PRS 357 - const qint32 venousPressureLimitHigh_Res = 10 ; // PRS 357 + const qint32 venousPressureLimitHigh_Min = 20 ; // PRS 357 + const qint32 venousPressureLimitHigh_Max = 600 ; // PRS 357 + const qint32 venousPressureLimitHigh_Res = 10 ; // PRS 357 + const qint32 venousPressureLimitHigh_Def = 400 ; // PRS 357 // min - const quint32 bloodPressureMeasureInterval_Def = 30 ; // PRS 358 - const quint32 bloodPressureMeasureInterval_Min = 15 ; // PRS 358 - const quint32 bloodPressureMeasureInterval_Max = 60 ; // PRS 358 - const quint32 bloodPressureMeasureInterval_Res = 5 ; // PRS 358 + const quint32 bloodPressureMeasureInterval_Def = 30 ; // PRS 358 + const quint32 bloodPressureMeasureInterval_Min = 15 ; // PRS 358 + const quint32 bloodPressureMeasureInterval_Max = 60 ; // PRS 358 + const quint32 bloodPressureMeasureInterval_Res = 5 ; // PRS 358 // mL/min - const quint32 rinsebackFlowRate_Def = 75 ; // PRS 359 - const quint32 rinsebackFlowRate_Min = 50 ; // PRS 359 - const quint32 rinsebackFlowRate_Max = 150 ; // PRS 359 - const quint32 rinsebackFlowRate_Res = 25 ; // PRS 359 + const quint32 rinsebackFlowRate_Def = 75 ; // PRS 359 + const quint32 rinsebackFlowRate_Min = 50 ; // PRS 359 + const quint32 rinsebackFlowRate_Max = 150 ; // PRS 359 + const quint32 rinsebackFlowRate_Res = 25 ; // PRS 359 enum ACID_ENUM { eAcid01 = 0,