ff3d-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ff3d-users] Navier-Stokes problem


From: DELPINO Stephane
Subject: Re: [ff3d-users] Navier-Stokes problem
Date: Wed, 06 Jun 2007 12:29:50 +0200
User-agent: Thunderbird 1.5.0.10 (X11/20070221)

Hello. I just reminded that I made a mistake.

Stephane Del Pino a écrit :

Yes. The force on the object can be approximated by the integral over the object of 1/epsilon*U :
        double fx = int[M](1/epsilon*ux);
        double fy = int[M](1/epsilon*uy);
        double fz = int[M](1/epsilon*uz);
where U = (ux,uy,uz) and the epsilon is used for the penalty term P in the example for Dominique, 1/epsilon = 10^3.
One should have read

double fx = int[M](ki/epsilon*ux);

where ki is a function that is 0 outside the obstacle and 1 inside. For instance:
   function ki = one(<1,0,0>);
where <1,0,0> is the reference of the object.

Regards,
Stephane.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]