Difference between revisions of "Parts/Aero/airplaneFins/tailfin.cfg"

From Kerbal Space Program Wiki
Jump to: navigation, search
m (BobBot moved page Parts/tailfin/part.cfg to Parts/Aero/tailfin/part.cfg without leaving a redirect: Update to new directory system)
m (*update to 1.0.4;)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Part config|Tail Fin|2=PART
 
{{Part config|Tail Fin|2=PART
 
{
 
{
// this is a sample config file, for determining a good file format for defining part parameters
+
name = tailfin
// comment line - ignored by cfg parser
+
module = Part
// empty lines, or lines without a '=' sign are also ignored
+
author = C. Jenkins, Porkjet
// all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting
+
rescaleFactor = 1
// diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs)
+
node_attach = 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 1
// each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though)
+
CoLOffset = 0.75, -0.5, 0
// each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored.
+
CoPOffset = 0.75, -0.5, 0
// conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
+
TechRequired = aviation
// 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)
+
entryCost = 3800
 
+
cost = 600
 
+
category = Aero
// --- general parameters ---
+
subcategory = 0
name = tailfin
+
title = Tail Fin
module = Winglet
+
manufacturer = C7 Aerospace Division
author = C. Jenkins
+
description = This tailfin has passed extensive modeling in our patented P.A.S system.(Paper Airplane Simulation). This fin has been blunted to prevent accidental dismemberment of installing technicians.
 
+
attachRules = 0,1,0,1,0
// --- asset parameters ---
+
mass = 0.125
mesh = model.mu
+
thermalMassModifier = 8.0
scale = 0.1
+
// heatConductivity = 0.06 // half default
 
+
emissiveConstant = 0.95
 
+
dragModelType = none
// --- editor parameters ---
+
maximum_drag = 0.02
TechRequired = aerodynamicSystems
+
minimum_drag = 0.02
entryCost = 3800
+
angularDrag = 2
cost = 600
+
crashTolerance = 12
category = Aero
+
maxTemp = 2400
subcategory = 0
+
explosionPotential = 0.1
title = Tail Fin
+
fuelCrossFeed = True
manufacturer = C7 Aerospace Division
+
bulkheadProfiles = srf
description = This tailfin has passed extensive modeling in our patented P.A.S system.(Paper Airplane Simulation). This fin has been blunted to prevent accidental dismemberment of installing technicians.
+
MODEL
// attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
+
{
attachRules = 0,1,0,1,1
+
model = Squad/Parts/Aero/airplaneFins/TailFin
 
+
}
// --- node definitions ---
+
MODULE
// definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
+
{
node_attach = 0, 0, 0.0, -1.0, 0.0, 0.0
+
name = ModuleControlSurface
 
+
useInternalDragModel = True
 
+
dragCoeff = 0.6
// --- standard part parameters ---
+
deflectionLiftCoeff = 0.61 // 2.18m^2
mass = 0.02
+
ctrlSurfaceRange = 25
dragModelType = override
+
ctrlSurfaceArea = 1
maximum_drag = 0.02
+
actuatorSpeed = 25
minimum_drag = 0.02
+
transformName = ctrlSrf
angularDrag = 2
+
}
crashTolerance = 12
+
}
maxTemp = 3400
 
explosionPotential = 0.1
 
fuelCrossFeed = True
 
 
 
// --- winglet parameters ---
 
// dragCoeff will override the maximum_drag value
 
dragCoeff = 0.5
 
deflectionLiftCoeff = 0.3
 
  
 
 
// --- tweakables (coming soon...) ---
 
 
 
 
 
// ----- DO NOT EDIT BELOW THIS POINT ------
 
 
}
 
 
}}
 
}}

Latest revision as of 12:09, 27 June 2015

This is the configuration file for Tail Fin.
PART
{
	name = tailfin
	module = Part
	author = C. Jenkins, Porkjet
	rescaleFactor = 1
	node_attach = 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 1
	CoLOffset = 0.75, -0.5, 0
	CoPOffset = 0.75, -0.5, 0
	TechRequired = aviation
	entryCost = 3800
	cost = 600
	category = Aero
	subcategory = 0
	title = Tail Fin
	manufacturer = C7 Aerospace Division
	description = This tailfin has passed extensive modeling in our patented P.A.S system.(Paper Airplane Simulation). This fin has been blunted to prevent accidental dismemberment of installing technicians.
	attachRules = 0,1,0,1,0
	mass = 0.125
	thermalMassModifier = 8.0
	// heatConductivity = 0.06 // half default
	emissiveConstant = 0.95
	dragModelType = none
	maximum_drag = 0.02
	minimum_drag = 0.02
	angularDrag = 2
	crashTolerance = 12
	maxTemp = 2400
	explosionPotential = 0.1
	fuelCrossFeed = True
	bulkheadProfiles = srf
	MODEL
	{
		model = Squad/Parts/Aero/airplaneFins/TailFin
	}
	MODULE
	{
		name = ModuleControlSurface
		useInternalDragModel = True
		dragCoeff = 0.6
		deflectionLiftCoeff = 0.61		// 2.18m^2
		ctrlSurfaceRange = 25
		ctrlSurfaceArea = 1
		actuatorSpeed = 25
		transformName = ctrlSrf
	}
}