sumantkr
(Sumant)
October 7, 2021, 7:31am
1
Dear All
I am trying to get the normal derivative value at a specified boundary.
for this I have written code as:
real Nu = int1d(Th, hot)( dx(T)*N.x + dy(T)*N.y);
for( int n1 = 0; n1<=20 ; n1++)
{ court<< Nu(20/n1, 0) << endl;
}
Am I right for Nu values at a boundary hot.
Jamal
(Jamal Daoudi)
August 7, 2022, 11:24am
3
varf vNeuman(used,v) = int1d(Th)(v*(dx(Uex)*N.x+dy(Uex)*N.y)/lenEdge);
Vh vn; // Finite element function to store the Normal derivative
vn[]= vNeuman(0,Vh);
plot(vn,wait=1);
jna1g18
(James)
September 21, 2023, 10:52am
4
Why do you integrate the normal derivative over the boundary?
cmd
(Chris)
September 21, 2023, 12:10pm
5
See my solution in this post .
2 Likes