@@ -309,7 +309,7 @@ public static ReportNode reportPqToPvBuses(ReportNode reportNode, int pqToPvBusC
309309 .add ();
310310 }
311311
312- public static ReportNode reportPvPqSwitchLimit (ReportNode firstRootReportNode , LfBus controllerBus , int limit , boolean log , Logger logger ) {
312+ public static ReportNode createRootReportPvPqSwitchLimit (ReportNode firstRootReportNode , LfBus controllerBus , int limit , boolean log , Logger logger ) {
313313 ReportNode result = ReportNode .newRootReportNode ()
314314 .withLocale (firstRootReportNode .getTreeContext ().getLocale ())
315315 .withResourceBundles (PowsyblOpenLoadFlowReportResourceBundle .BASE_NAME )
@@ -324,7 +324,7 @@ public static ReportNode reportPvPqSwitchLimit(ReportNode firstRootReportNode, L
324324 return result ;
325325 }
326326
327- public static ReportNode reportPqToPvBusMaxLimit (ReportNode firstRootReportNode , LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
327+ public static ReportNode createRootReportPqToPvBusMaxLimit (ReportNode firstRootReportNode , LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
328328 ReportNode result = ReportNode .newRootReportNode ()
329329 .withLocale (firstRootReportNode .getTreeContext ().getLocale ())
330330 .withResourceBundles (PowsyblOpenLoadFlowReportResourceBundle .BASE_NAME )
@@ -342,7 +342,7 @@ public static ReportNode reportPqToPvBusMaxLimit(ReportNode firstRootReportNode,
342342 return result ;
343343 }
344344
345- public static ReportNode reportPqToPvBusMinLimit (ReportNode firstRootReportNode , LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
345+ public static ReportNode createRootReportPqToPvBusMinLimit (ReportNode firstRootReportNode , LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
346346 ReportNode result = ReportNode .newRootReportNode ()
347347 .withLocale (firstRootReportNode .getTreeContext ().getLocale ())
348348 .withResourceBundles (PowsyblOpenLoadFlowReportResourceBundle .BASE_NAME )
@@ -384,12 +384,12 @@ public static ReportNode reportReactiveControllerBusesToPqBuses(ReportNode repor
384384 .add ();
385385 }
386386
387- public static ReportNode reportReactiveControllerBusesToPqMaxQ (ReportNode firstRootReportNode ,
388- LfBus controllerBus ,
389- double busQ ,
390- double maxQ ,
391- boolean log ,
392- Logger logger ) {
387+ public static ReportNode createRootReportReactiveControllerBusesToPqMaxQ (ReportNode firstRootReportNode ,
388+ LfBus controllerBus ,
389+ double busQ ,
390+ double maxQ ,
391+ boolean log ,
392+ Logger logger ) {
393393 ReportNode result = ReportNode .newRootReportNode ()
394394 .withLocale (firstRootReportNode .getTreeContext ().getLocale ())
395395 .withResourceBundles (PowsyblOpenLoadFlowReportResourceBundle .BASE_NAME )
@@ -405,12 +405,12 @@ public static ReportNode reportReactiveControllerBusesToPqMaxQ(ReportNode firstR
405405 return result ;
406406 }
407407
408- public static ReportNode reportReactiveControllerBusesToPqMinQ (ReportNode firstRootReportNode ,
409- LfBus controllerBus ,
410- double busQ ,
411- double minQ ,
412- boolean log ,
413- Logger logger ) {
408+ public static ReportNode createRootReportReactiveControllerBusesToPqMinQ (ReportNode firstRootReportNode ,
409+ LfBus controllerBus ,
410+ double busQ ,
411+ double minQ ,
412+ boolean log ,
413+ Logger logger ) {
414414 ReportNode result = ReportNode .newRootReportNode ()
415415 .withLocale (firstRootReportNode .getTreeContext ().getLocale ())
416416 .withResourceBundles (PowsyblOpenLoadFlowReportResourceBundle .BASE_NAME )
@@ -895,7 +895,7 @@ public static void reportActionApplicationFailure(String actionId, String contin
895895 .add ();
896896 }
897897
898- public static ReportNode createThreadRootReport (ReportNode firstRootReport ) {
898+ public static ReportNode createRootThreadReport (ReportNode firstRootReport ) {
899899 return ReportNode .newRootReportNode ()
900900 .withLocale (firstRootReport .getTreeContext ().getLocale ())
901901 .withAllResourceBundlesFromClasspath ()
0 commit comments