ff3d-users
[Top][All Lists]
Advanced

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

[ff3d-users] Robin boundary conditions


From: Benoit_Desjardins
Subject: [ff3d-users] Robin boundary conditions
Date: Wed, 27 Jun 2007 17:57:10 +0200

Hello Stephane
 
thanks a lot for the vtk reader. It works perfectly !
 
I tried recently to use Robin type boundary conditions
for simple academic problems like: 
 
vector n = (100,10,10);
vector a = (0,0,0);
vector b = (1,1,1);
mesh M = structured(n,a,b);
solve(u) in M
memory(matrix=none),
method(type=penalty)
{
pde(u)
-div(grad(u)) = 0;
dnu(u) + u = 2. on M xmax;
u=0. on M xmin;
};
save(vtk,"temperature",u,M);
 
it computes the right solution. But as soon
as I try to multiply "u" by something, I get
a syntax error.
 
dnu(u) + 3*u = 2. on M xmax;
 
maybe I missed something with the way the
boundary conditions have to be expressed ?
 
thanks for your advice
 
Best regards
 
Benoit
 
 

reply via email to

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