forgot to move 2 files :D

This commit is contained in:
Brantegger Georg
2022-06-21 07:08:33 +02:00
parent 5cdf62073d
commit 18fd4cd935
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import numpy as np
from math import pi
def Hagen_Poiseuille(P_above,P_below,dx,constants=[1,1]):
dP = P_above-P_below
r = constants[0]
vis = constants[1]
Q = (pi*r**4)/(8*vis)*dP/dx
return Q