diff --git a/src/app/formulaire/definition/form-pressureloss.ts b/src/app/formulaire/definition/form-pressureloss.ts
index f574114b12678bc0acc2526df7470ab48e8c1f44..26c862355f9b7d5f572d022379d73c0f27e4e982 100644
--- a/src/app/formulaire/definition/form-pressureloss.ts
+++ b/src/app/formulaire/definition/form-pressureloss.ts
@@ -1,6 +1,7 @@
 import { PressureLoss, Props, PressureLossType, Session, PressureLossLaw, CalculatorType, IObservable } from "jalhyd";
 import { FormulaireFixedVar } from "./form-fixedvar";
 import { FieldSet } from "../elements/fieldset";
+import { Prop_NullParameters } from "jalhyd";
 
 /**
  * Formulaire pour la perte de charge
@@ -27,6 +28,7 @@ export class FormulairePressureLoss extends FormulaireFixedVar {
 
         // create pressure loss law child nub
         const propsLaw: Props = new Props();
+        propsLaw.setPropValue(Prop_NullParameters, props.getPropValue(Prop_NullParameters));
         propsLaw.setPropValue("calcType", CalculatorType.PressureLossLaw);
         const law = Session.getInstance().createNub(propsLaw) as PressureLossLaw;
         const pl: PressureLoss = this.currentNub as PressureLoss;
@@ -37,7 +39,7 @@ export class FormulairePressureLoss extends FormulaireFixedVar {
         // changement de propriété du FieldSet contenant le select de choix du type de perte de charge
         if (sender instanceof FieldSet && sender.id === "fs_pressureloss_law" && data.action === "propertyChange") {
             // replace underlying pressure loss law without replacing whole Nub
-            const newPLL = Session.getInstance().createPressureLossLaw(data.value);
+            const newPLL = Session.getInstance().createPressureLossLaw(data.value, undefined, this.currentNub.getPropValue(Prop_NullParameters));
             (this._currentNub as PressureLoss).setLaw(newPLL);
             // show / hide dependent fields
             this.refreshFieldsets();