Mathematica graphing problem - twisted plane

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 3K views
anonamatron
Messages
1
Reaction score
0
Hi folks,

I'm trying to graph something in Mathematica, and honestly don't know where to start.

Imagine you have a rectangle in the x,z plane of a 3D space. Now, twist one end of the rectange so it's parallel to the y axis. The opposite end remains parallel to the x axis. Between the two, you basically have a line segment at each point along a segment of the z axis, with the angle it makes increasing steadily.

The best I've come up with is Plot3D[x Tan[\[Pi]/2 z/4], {x, -2, 2}, {z, 0, 4}] (the numbers are arbitrary), but that doesn't have the finite width I'm looking for - you can see the plane rotating all right, but no edges will ever come into view.

Have I explained that clearly enough?

Any ideas?
 
Physics news on Phys.org
Try ParametricPlot3D[{v, u Cos[v], -u Sin[v]}, {u, 0, 1}, {v, 0, \[Pi]/
2}] . I think this is what you want. You might have to play with u and v, but I think you get the idea.