I have two deformed planes, that i would like to draw with 3dplot, as well as drawing a curve marking their intersection.
the curves are given by the expressions:
C = -(k[d2]*B[2]+I*k[m]+k[d1]*B[1])/((B[1]+B[2]-R)*k[a1]+(B[1]+B[2]-R)*k[a2]-k[m]),
C = k[d1]*B[1]/(k[a1]*(R-B[1]-B[2]))
evaluated at
Pars := [k[a1] = 6*10^(-4), k[d1] = 7*10^(-3), k[a2] = 5*10^(-4), k[d2] = 10^(-2), R = .5, k[m] = 10^(-4), C[T] = 100, h = 10^(-6)]
with the variables B[1],B[2] and C within the bounds [0..0.5],[0..0.5],[0..100].
My method was to try and use solve to find a formula for the intersection curve- but i couldn't get 3dplot to plot it!