Hello all,
For a project of groundwater contaminations i need to plot the following graph.
18^2-y^2 = Q*(ln((3000*(18-y))*sqrt(0.412e-4))-ln(sqrt(x)))/(0.412e-4*Pi)
where as X stands for the distance of a waterfilter and Y stands for the water level.
I tried to plot this with maple but i cant find the solution for this.
Thanks for your time,
Gertjan
If a 2D plot is meant
by setting a value for Q, you can do something like:
implicitplot
To plot a curve of the form f(x,y) = g(x,y), you can use implicitplot in the plots package.
I'll take Q = 10000.
graphical viewing using animation or 3d
I think you have missed on your guesses for interesting values of Q. Rather than getting individual plots for fixed values of Q, I let Maple create an animation of this curve as a function of the parameter Q. Here's the basic idea, building upon Robert's use of implicitplot:
Note that I replaced Q with 10^q and modified the viewing window. In my code, I'm looking at Q between 0.01 and 0.1. (I'm having trouble uploading a file to MaplePrimes right now, so I can't show you what this produces.) Further refinements are probably called for, but I don't know enough about the specifics of your problem to begin to guess what you want to see.
You could also look at your equation in 3D. I don't see that the gridrefine and gridcrossing options are available in implicitplot3d, so it's a little more difficult to get a good picture.
Doug