From b7465401cb9ab7065909b41a3d7a24b0d54cd5f5 Mon Sep 17 00:00:00 2001 From: srdm Date: Sat, 12 Oct 2024 13:25:15 +0200 Subject: [PATCH] bug correction --- src/pandapipes/pf/derivative_calculation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pandapipes/pf/derivative_calculation.py b/src/pandapipes/pf/derivative_calculation.py index f96354ed..29800719 100644 --- a/src/pandapipes/pf/derivative_calculation.py +++ b/src/pandapipes/pf/derivative_calculation.py @@ -1,6 +1,5 @@ import numpy as np -from build.lib.pandapipes.pf.internals_toolbox import get_to_nodes_corrected from pandapipes.constants import NORMAL_TEMPERATURE from pandapipes.idx_branch import LENGTH, D, K, RE, LAMBDA, LOAD_VEC_BRANCHES, \ JAC_DERIV_DM, JAC_DERIV_DP, JAC_DERIV_DP1, LOAD_VEC_NODES, JAC_DERIV_DM_NODE, \ @@ -8,7 +7,7 @@ LOAD_VEC_BRANCHES_T, JAC_DERIV_DT, JAC_DERIV_DTOUT, JAC_DERIV_DT_NODE_B, \ JAC_DERIV_DT_NODE_N, MDOTINIT, PUMP_TYPE, CIRC from pandapipes.idx_node import TINIT as TINIT_NODE, INFEED, NODE_TYPE_T, T -from pandapipes.pf.internals_toolbox import get_from_nodes_corrected, get_to_nodes_corrected +from pandapipes.pf.internals_toolbox import get_from_nodes_corrected, get_to_nodes_corrected, P from pandapipes.properties.fluids import get_fluid from pandpaipes.pf.pipeflow_setup import PipeflowNotConverged from pandapipes.properties.properties_toolbox import get_branch_real_density, get_branch_real_eta, \