Difference between revisions of "Mk1 Command Pod"

From Kerbal Space Program Wiki
Jump to: navigation, search
(overhaul)
Line 1: Line 1:
{{Part
+
{{Partbox
|
+
|Name=Command Pod Mk1
intro=The '''Command Pod Mk1''' houses the Kerbal crew during their mission. At least one is required to build any kind of rocket.
+
|Role=Command Pod
|
+
|File=Command Pod Mk1.jpg
usage=Generally placed at the top of the rocket, the aim of the game is to get your crew into space and land them safely again back on the surface of [[Kerbal]].
+
|Costs=1600
|
+
|Mass=1
attributes=*'''Mass:''' 1
+
|since=v0.7.3
*'''Drag:''' .15 - .2
+
|cfg=Parts/mk1pod/part.cfg
|
+
}}
config=
 
<pre>
 
// this is a sample config file, for determining a good file format for defining part parameters
 
// comment line - ignored by cfg parser
 
// empty lines, or lines without a '=' sign are also ignored
 
// all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting
 
// diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs)
 
// each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though)
 
// each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored.
 
// conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
 
// This is done automatically, so any public variable defined in the loaded module can be accessed this way (provided it's value can be parsed)
 
 
 
 
 
// --- general parameters ---
 
name = mk1pod
 
module = CommandPod
 
author = Mrbrownce
 
 
 
// --- asset parameters ---
 
mesh = mk1pod.DAE
 
scale = 0.1
 
texture = mk1podtexture.png
 
specPower = 0.1
 
rimFalloff = 3
 
alphaCutoff = 0.0
 
 
 
// --- node definitions ---
 
// definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
 
node_stack_bottom = 0.0, -3.02662, 0.0, 0.0, 1.0, 0.0, 1
 
node_stack_top = 0.0, 3.93121, 0.0, 0.0, 1.0, 0.0, 0
 
 
 
// --- editor parameters ---
 
cost = 1600
 
category = 1
 
subcategory = 0
 
title = Command Pod Mk1
 
//manufacturer = Kerlington Model Rockets and Paper Products Inc.
 
description = Originally built as a placeholder for a demonstration mock-up of a rocket, the Mk1 Command Pod was heralded as a far safer and more reliable option than it's predecessors by rocket scientists throughout the world. It is now commonly seen in active service.
 
 
 
// attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
 
attachRules = 1,0,1,0,0
 
 
 
// --- standard part parameters ---
 
mass = 1
 
dragModelType = default
 
maximum_drag = 0.2
 
minimum_drag = 0.15
 
angularDrag = 2
 
crashTolerance = 14
 
maxTemp = 3400
 
 
 
// --- pod/rcs parameters ---
 
 
 
rotPower = 5
 
linPower = 10
 
  
// --- generic engine parameters ---
+
The '''Command Pod Mk1''' houses the Kerbal crew during their mission. At least one is required to build any kind of rocket.
 +
== Usage ==
 +
Generally placed at the top of the rocket, the aim of the game is to get your crew into space and land them safely again back on the surface of [[Kerbal]].
  
maxThrust = 100
+
== Changes ==
minThrust = 100
+
''see also: [[Version History]]''
heatProduction = 800
+
;v0.8.5
fuelConsumption = 8
+
*Exposed Kd, Ki and Kp parameters for tuning the SAS and CommandPod modules
internalFuel = 0
+
;v0.8.2
 +
*(Bug fix) Pod cannot be dropped if an Escape Tower (PunchOut addon) is attached
 +
;v0.7.3
 +
* Initial Release
  
// --- more engine parameters ---
+
{{Parts}}
 
 
thrustVectoringCapable = False
 
gymbalRange = 0
 
 
 
differentialThrustCapable = False
 
differentialThrustRange = 0
 
 
 
// --- fuel tank parameters ---
 
 
 
fuel = 500
 
dryMass = 0.4
 
fuelMass = 0.008
 
 
 
// --- winglet parameters ---
 
 
 
deflectionLiftCoeff = 0.1
 
 
 
 
 
// --- tweakables (coming soon...) ---
 
 
 
 
 
 
 
 
 
// ----- DO NOT EDIT BELOW THIS POINT ------
 
</pre>
 
|
 
}}
 

Revision as of 21:54, 27 July 2011

Template:Partbox

The Command Pod Mk1 houses the Kerbal crew during their mission. At least one is required to build any kind of rocket.

Usage

Generally placed at the top of the rocket, the aim of the game is to get your crew into space and land them safely again back on the surface of Kerbal.

Changes

see also: Version History

v0.8.5
  • Exposed Kd, Ki and Kp parameters for tuning the SAS and CommandPod modules
v0.8.2
  • (Bug fix) Pod cannot be dropped if an Escape Tower (PunchOut addon) is attached
v0.7.3
  • Initial Release