MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Re: Solid modeling using Manipulate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg127194] Re: [mg127180] Re: Solid modeling using Manipulate
  • From: "mathgroup " <fizzymath at knology.net>
  • Date: Fri, 6 Jul 2012 03:23:36 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201207040733.DAA01471@smc.vnet.net>

I changed Alexei's Column[{...}]  to Grid [{{....}}] which I prefer...this 
put all the plots on the same Line so I could see all at the same time....


jerry b...


-----Original Message----- 
From: Alexei Boulbitch
Sent: Wednesday, July 04, 2012 2:33 AM
To: mathgroup at smc.vnet.net
Subject: [mg127194] [mg127180] Re: Solid modeling using Manipulate

ThickCyl[a_,t_,v_]={a Cos[t+v],1.2 t,a Sin[t+v]}; (* GLNarasimham
SolidModelingThickCyl.nb *)
Cyl=ParametricPlot3D[{Cos[t],u,Sin[t]},{t,0,2 Pi},{u,0,2 Pi},ViewPoint-
>{3,1,2}]
RingSlide=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{v,0,2 Pi},{a,
1,1.6},Mesh->{18,4},PlotRange->{{-1.8,1.8},{-.25,8},
{-1.8,1.8}},ViewPoint->{3,1,2}],{t,0,2 Pi,Pi/10}]
FinRotn=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{t,0,2 Pi},{a,
1,1.6},Mesh->{18,4},PlotRange->{{-1.8,1.8},{-.25,8},
{-1.8,1.8}},ViewPoint->{3,1,2}],{v,0,2 Pi,Pi/10}]
CylExpn=Manipulate[ParametricPlot3D[ThickCyl[a,t,v],{t,0,2 Pi},{v,0,2
Pi},Mesh->{18,18},PlotRange->{{-1.8,1.8},{-0.25,8},
{-1.8,1.8}},ViewPoint->{3,1,2}],{a,1,1.6,.1}]

How to combine the above four graphics into a single dynamic image
with t,v and a Manipulates ?

Regards
Narasimham

Try this:

Manipulate[
Column[{
   ParametricPlot3D[{Cos[t], u, Sin[t]}, {t, 0, 2 Pi}, {u, 0, 2 Pi},
    ViewPoint -> {3, 1, 2}],
   ParametricPlot3D[ThickCyl[a, t, v], {v, 0, 2 Pi}, {a, 1, 1.6},
    Mesh -> {18, 4},
    PlotRange -> {{-1.8, 1.8}, {-.25, 8}, {-1.8, 1.8}},
    ViewPoint -> {3, 1, 2}],
   ParametricPlot3D[ThickCyl[a, t, v], {t, 0, 2 Pi}, {a, 1, 1.6},
    Mesh -> {18, 4},
    PlotRange -> {{-1.8, 1.8}, {-.25, 8}, {-1.8, 1.8}},
    ViewPoint -> {3, 1, 2}],
   ParametricPlot3D[ThickCyl[a, t, v], {t, 0, 2 Pi}, {v, 0, 2 Pi},
    Mesh -> {18, 18},
    PlotRange -> {{-1.8, 1.8}, {-0.25, 8}, {-1.8, 1.8}},
    ViewPoint -> {3, 1, 2}]

   }],

{t, 0, 2 Pi, Pi/10}, {v, 0, 2 Pi, Pi/10}, {a, 1, 1.6, .1}]

Regards, Alexei


Alexei BOULBITCH, Dr., habil.
IEE S.A.
ZAE Weiergewan,
11, rue Edmond Reuter,
L-5326 Contern, LUXEMBOURG

Office phone :  +352-2454-2566
Office fax:       +352-2454-3566
mobile phone:  +49 151 52 40 66 44

e-mail: alexei.boulbitch at iee.lu






  • Prev by Date: Re: Re: How to rectify the error for NDSolve ?
  • Next by Date: Re: NonlinearModelFit to multiple data sets simultaneously?
  • Previous by thread: Re: Solid modeling using Manipulate
  • Next by thread: Re: Higher precision in Error function Erf[] needed.