Skip to content

Commit

Permalink
Fixed wrong variable in Franke3D function
Browse files Browse the repository at this point in the history
  • Loading branch information
timo-schrader authored and davidscn committed Mar 13, 2023
1 parent 380b8f2 commit a518b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/precice-aste-evaluate
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class Calculator:
pre_def_functions = {
"franke3d": "0.75*exp(-((9*x-2)^2+(9*y-2)^2+(9*z-2)^2)/4)"
"+0.75*exp(-((9*x+1)^2/49+(9*y+1)/10+(9*z+1)/10))"
"+0.5*exp(-((9*x-7)^2+(9*y-3)^2+(9*y-5)^2)/4)"
"+0.5*exp(-((9*x-7)^2+(9*y-3)^2+(9*z-5)^2)/4)"
"-0.2*exp(-((9*x-4)^2+(9*y-7)^2+(9*z-5)^2))",
"eggholder3d": "-x*sin(sqrt(abs(x-y-47)))-(y+47)*sin(sqrt(abs(0.5*x+y+47)))"
"-y*sin(sqrt(abs(y-z-47)))-(z+47)*sin(sqrt(abs(0.5*y+z+47)))",
Expand Down

0 comments on commit a518b4a

Please sign in to comment.