-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tweaked aerodynamics of round pods (CoP/CoL should be very close to center given their shape) to stabilize them during descent. * Added shielding to Mk2 Pod * Added support for new Mk1Pod part (technically same part but new name and new model; so added name to old config)
- Loading branch information
1 parent
08c3f2b
commit bebb44f
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@PART[Mk2Pod] | ||
{ | ||
%maxTemp = 850 | ||
%skinMaxTemp = 2700 | ||
%skinInternalConductionMult = 0.0001 | ||
%emissiveConstant = 0.85 | ||
|
||
MODULE | ||
{ | ||
name = ModuleHeatShield | ||
ablativeResource = AblativeShielding | ||
lossExp = -7500 | ||
lossConst = 1.6 | ||
pyrolysisLossFactor = 6000 | ||
reentryConductivity = 0.001 | ||
ablationTempThresh = 500 | ||
depletedMaxTemp = 1200 | ||
charMin = 1 | ||
charMax = 1 | ||
charAlpha = 1 | ||
useNode = true | ||
nodeName = bottom | ||
} | ||
RESOURCE | ||
{ | ||
name = AblativeShielding | ||
amount = 120 | ||
maxAmount = 120 | ||
} | ||
} | ||
@PART[kv1Pod|kv2Pod|kv3Pod] | ||
{ | ||
%CoPOffset = 0.0, 0.3379, -0.0254 // 0.0, 0.3125, 0.0 | ||
%CoLOffset = 0.0, 0.3379, -0.0254 // 0.0, 0.3125, 0.0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters