annotate atc_plane_specs.py @ 13:4a95c5552d3b

Stall speed and normal rate of climb adjustment committer: Jeff Sipek <jeffpc@jeff.(none)> 1120872321 -0400
author Jeff Sipek <jeffpc@jeff.(none)>
date Sat, 09 Jul 2005 01:25:21 -0400
parents 243941ec0a36
children b2ed1770081f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
1 #/*
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
2 # * ATC - Air Traffic Controller simulation game
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
3 # *
11
300ba3412449 Fixed velocity calc formulas
Jeff Sipek <jeffpc@jeff.(none)>
parents: 10
diff changeset
4 # * Copyright (C) 2005 Josef "Jeff" Sipek <jeffpc@optonline.net>
10
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
5 # *
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
6 # * This program is free software; you can redistribute it and/or modify
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
7 # * it under the terms of the GNU General Public License as published by
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
8 # * the Free Software Foundation; either version 2 of the License, or
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
9 # * (at your option) any later version.
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
10 # *
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
11 # * This program is distributed in the hope that it will be useful,
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
12 # * but WITHOUT ANY WARRANTY; without even the implied warranty of
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
13 # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
14 # * GNU General Public License for more details.
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
15 # *
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
16 # * You should have received a copy of the GNU General Public License
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
17 # * along with this program; if not, write to the Free Software
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
18 # * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
19 # *
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
20 # * @(#) %M% %I% %E% %U%
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
21 # */
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
22
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
23 # all measurements in meters/sec or meters
12
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
24 plane_SPECS = ({"fullname": "Piper PA28-140 Cherokee",
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
25 "name": "PA28",
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
26 "heavy": False,
10
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
27 "stall_speed": 16.667,
13
4a95c5552d3b Stall speed and normal rate of climb adjustment
Jeff Sipek <jeffpc@jeff.(none)>
parents: 12
diff changeset
28 "climb_normal": 2.54,
10
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
29 "max_altitude": 6500.0},
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
30
12
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
31 {"fullname": "Boeing 747-400",
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
32 "name": "B747",
243941ec0a36 Make the plane info more realistic
Jeff Sipek <jeffpc@jeff.(none)>
parents: 11
diff changeset
33 "heavy": True,
13
4a95c5552d3b Stall speed and normal rate of climb adjustment
Jeff Sipek <jeffpc@jeff.(none)>
parents: 12
diff changeset
34 "stall_speed": 66.878,
4a95c5552d3b Stall speed and normal rate of climb adjustment
Jeff Sipek <jeffpc@jeff.(none)>
parents: 12
diff changeset
35 "climb_normal": 10.16,
10
7bb4cd2fa1bc Changed window size from 800x600 to 1024x768
Jeff Sipek <jeffpc@jeff.(none)>
parents:
diff changeset
36 "max_altitude": 13000.0})