1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
# ex_ellipse.ppl
#
# The code in this file is part of Pyxplot
# <http://www.pyxplot.org.uk>
#
# Copyright (C) 2006-2012 Dominic Ford <coders@pyxplot.org.uk>
# 2008-2012 Ross Church
#
# $Id: ex_ellipse.ppl 1261 2012-07-11 21:38:05Z dcf21 $
#
# Pyxplot is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# You should have received a copy of the GNU General Public License along with
# Pyxplot; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
# ----------------------------------------------------------------------------
# This script produces a figure for the Pyxplot Users' Guide
# Call common initialisation script
reset
title = "ex_ellipse"
load "examples/fig_init.ppl"
# BEGIN
set multiplot ; set nodisplay
a = 6.0 # Semi-major axis
b = 4.0 # Semi-minor axis
e = sqrt(1-(b/a)**2) # Eccentricity
slr = a*(1-e**2) # Length of semi-latus rectum
fd = a*e # Distance of focus from center
# Draw ellipse
ellipse center 0,0 semiMajor a semiMinor b with lw 3
# Draw points at center and focus
set texthalign center ; set textvalign top
set fontsize 1.5
point at 0,0 label "Centre" with pointsize 2 plw 2
point at -fd,0 label "Focus" with pointsize 2 plw 2
# Draw arrows and dotted lines on ellipse
arrow from 0,0 to 0,b with twohead lw 2 lt 3 # Semi-minor axis
arrow from 0,0 to a,0 with twohead lw 2 lt 3 # Semi-major axis
arrow from -fd,0 to -fd,slr with tw lw 2 lt 3 # SLR
arrow from 0,0 to -fd,0 with twohead lw 2 lt 3 # Focus <-> Centre
# Label ellipse
set texthalign center ; set textvalign center
text '$ae$' at -fd/2,-0.3
text '$a$' at a/2,+0.3
text '$b$' at 0.3,b/2
set texthalign left ; set textvalign center
text '$L=a(1-e^2)$' at 0.2-fd,slr/2
# Display diagram
set display ; refresh
# END
# Call common cleanup script
load "examples/fig_end.ppl"
|