From 12b362523efc450b1a0359fb8ed71f7186544915 Mon Sep 17 00:00:00 2001 From: Brantegger Georg Date: Mon, 13 Jun 2022 15:02:34 +0200 Subject: [PATCH] added unapplicable hagen Poiseuille --- Durchflussraten.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Durchflussraten.py b/Durchflussraten.py index e69de29..d6f6b70 100644 --- a/Durchflussraten.py +++ b/Durchflussraten.py @@ -0,0 +1,14 @@ +import numpy as np +from math import pi + + +def Hagen_Poiseuille(dP,dx,r,vis): + Q = (pi*r**4)/(8*vis)*dP/dx + return Q + + +def get_Q_from_dP(P_above,P_below,dx,constants=[1,1]): + r = constants[0] + vis = constants[1] + +