Drawing Parabolic Curve

Discussion in 'AutoCAD' started by Jeannette, Apr 26, 2008.

  1. Jeannette

    Jeannette Guest

    Hello group,

    I have a request from a customer to draw a specific parabola curve
    described as follows: Y=X squared / 4P. Where P = 6.

    Anybody knows how to do that?

    Thanks,

    Jeannette
     
    Jeannette, Apr 26, 2008
    #1
  2. Jeannette

    Guest Guest

    Dish antenna?

    Bob
     
    Guest, Apr 26, 2008
    #2
  3. Jeannette

    Guest Guest

    select a value for x calculate y
    X=-1
    P=6
    Y=(x*x)/(4*P)
    Y=(-1*-1)/(4*6)
    Y=1/24

    X=0
    P=6
    Y=(x*x)/(4*P)
    Y=(0*0)/(4*6)
    Y=0/24
    Y=0

    X=1
    P=6
    Y=(x*x)/(4*P)
    Y=(1*1)/(4*6)
    Y=1/24

    X=2
    P=6
    Y=(x*x)/(4*P)
    Y=(2*2)/(4*6)
    Y=4/24

    so the command is draw single point
    enter the location if x=1 then
    1,1/24
    if x=2 then
    2,4/24
    if x=3 then
    3,9/24
    etc.
    connect the dots with polyline arcs.
    the closer the dots to each other the more accurate the curve.

    Bob
     
    Guest, Apr 26, 2008
    #3
  4. Jeannette

    strawberry Guest

    or connect the dots with a spline
     
    strawberry, Apr 26, 2008
    #4
  5. Jeannette

    Martin Vogel Guest

    Hello,

    There is a a little program (20 years old) to draw parabolic curves at
    http://www.martinvogel.de/prog/marvolisp.html - you can download the
    marvolisp.zip file, extract it into your AutoCAD's support directory
    and start the program with the command !(load "parabel.lsp") and then
    "parabel".

    Martin
     
    Martin Vogel, Apr 27, 2008
    #5
  6. There is also a program called Z-grapher (freeware) which will do any
    functional, parametric or polar graph, and can export to a rastered
    format by copying and pasting. For this, I use Irfanview.
    ________________________________________
    Everyone is a little krazy,
    but I am the kynge of krazy

    KrazyKyngeKorny (Krazy, not stupid)
    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
     
    KrazyKyngeKorny, Apr 30, 2008
    #6
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.