Skip to content

Commit

Permalink
Fix derivative for manufactured solution
Browse files Browse the repository at this point in the history
  • Loading branch information
jedbrown committed Apr 23, 2011
1 parent cabadbd commit 3b0423e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs/tests/ellip.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static void EllipExact_0_Solution(const struct EllipExactCtx *ctx,const struct E
u[0] = cos(a*x) * exp(b*y) * sin(c*z);
du[0] = -a*sin(a*x) * exp(b*y) * sin(c*z);
du[1] = cos(a*x) * b*exp(b*y) * sin(c*z);
du[2] = cos(a*x) * exp(b*y) * cos(c*z);
du[2] = cos(a*x) * exp(b*y) * c*cos(c*z);
}
static void EllipExact_0_Forcing(const struct EllipExactCtx *ctx,const struct EllipParam *prm,const dReal xyz[3],dScalar f[1])
{
Expand Down

0 comments on commit 3b0423e

Please sign in to comment.