diff --git a/FerramAerospaceResearch/FARAPI.cs b/FerramAerospaceResearch/FARAPI.cs
index d71f2da01..de486d634 100644
--- a/FerramAerospaceResearch/FARAPI.cs
+++ b/FerramAerospaceResearch/FARAPI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARAeroComponents/FARAeroPartModule.cs b/FerramAerospaceResearch/FARAeroComponents/FARAeroPartModule.cs
index 29a26f8c1..ef44e8af6 100644
--- a/FerramAerospaceResearch/FARAeroComponents/FARAeroPartModule.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/FARAeroPartModule.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARAeroComponents/FARAeroSection.cs b/FerramAerospaceResearch/FARAeroComponents/FARAeroSection.cs
index e1d285907..3ed59f191 100644
--- a/FerramAerospaceResearch/FARAeroComponents/FARAeroSection.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/FARAeroSection.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -284,7 +284,7 @@ public void ClearAeroSection()
handledAeroModulesIndexDict.Clear();
}
- public void PredictionCalculateAeroForces(float atmDensity, float machNumber, float reynoldsPerUnitLength, float pseudoKuttaNumber, float skinFrictionDrag, Vector3 vel, ferram4.FARCenterQuery center)
+ public void PredictionCalculateAeroForces(float atmDensity, float machNumber, float reynoldsPerUnitLength, float pseudoLanchesterNumber, float skinFrictionDrag, Vector3 vel, ferram4.FARCenterQuery center)
{
if (partData.Count == 0)
return;
@@ -351,7 +351,7 @@ public void PredictionCalculateAeroForces(float atmDensity, float machNumber, fl
nForce *= normalForceFactor;
double xForce = -skinFrictionForce * Math.Sign(cosAoA) * cosSqrAoA;
- double localVelForce = xForce * pseudoKuttaNumber;
+ double localVelForce = xForce * pseudoLanchesterNumber;
xForce -= localVelForce;
localVelForce = Math.Abs(localVelForce);
@@ -430,7 +430,7 @@ public void PredictionCalculateAeroForces(float atmDensity, float machNumber, fl
center.AddTorque(torqueVector);
}
- public void FlightCalculateAeroForces(float atmDensity, float machNumber, float reynoldsPerUnitLength, float pseudoKuttaNumber, float skinFrictionDrag)
+ public void FlightCalculateAeroForces(float atmDensity, float machNumber, float reynoldsPerUnitLength, float pseudoLanchesterNumber, float skinFrictionDrag)
{
double skinFrictionForce = skinFrictionDrag * xForceSkinFriction.Evaluate(machNumber); //this will be the same for each part, so why recalc it multiple times?
@@ -489,7 +489,7 @@ public void FlightCalculateAeroForces(float atmDensity, float machNumber, float
nForce *= normalForceFactor;
double xForce = -skinFrictionForce * Math.Sign(cosAoA) * cosSqrAoA;
- double localVelForce = xForce * pseudoKuttaNumber;
+ double localVelForce = xForce * pseudoLanchesterNumber;
xForce -= localVelForce;
localVelForce = Math.Abs(localVelForce);
diff --git a/FerramAerospaceResearch/FARAeroComponents/FARVesselAero.cs b/FerramAerospaceResearch/FARAeroComponents/FARVesselAero.cs
index 91caa9d66..595b24dc8 100644
--- a/FerramAerospaceResearch/FARAeroComponents/FARVesselAero.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/FARVesselAero.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -283,7 +283,7 @@ private void CalculateAndApplyVesselAeroProperties()
reynoldsNumber = FARAeroUtil.CalculateReynoldsNumber(_vessel.atmDensity, Length, _vessel.srfSpeed, machNumber, FlightGlobals.getExternalTemperature((float)_vessel.altitude, _vessel.mainBody), _vessel.mainBody.atmosphereAdiabaticIndex);
float skinFrictionDragCoefficient = (float)FARAeroUtil.SkinFrictionDrag(reynoldsNumber, machNumber);
- float pseudoKuttaNumber = (float)(machNumber / (reynoldsNumber + machNumber));
+ float pseudoLanchesterNumber = (float)(machNumber / (reynoldsNumber + machNumber));
Vector3 frameVel = Krakensbane.GetFrameVelocityV3f();
@@ -307,7 +307,7 @@ private void CalculateAndApplyVesselAeroProperties()
}*/
for (int i = 0; i < _currentAeroSections.Count; i++)
- _currentAeroSections[i].FlightCalculateAeroForces(atmDensity, (float)machNumber, (float)(reynoldsNumber / Length), pseudoKuttaNumber, skinFrictionDragCoefficient);
+ _currentAeroSections[i].FlightCalculateAeroForces(atmDensity, (float)machNumber, (float)(reynoldsNumber / Length), pseudoLanchesterNumber, skinFrictionDragCoefficient);
_vesselIntakeRamDrag.ApplyIntakeRamDrag((float)machNumber, _vessel.srf_velocity.normalized, (float)_vessel.dynamicPressurekPa);
@@ -340,10 +340,10 @@ public void SimulateAeroProperties(out Vector3 aeroForce, out Vector3 aeroTorque
float reynoldsPerLength = reynoldsNumber / (float)Length;
float skinFriction = (float)FARAeroUtil.SkinFrictionDrag(reynoldsNumber, machNumber);
- float pseudoKuttaNumber = machNumber / (reynoldsNumber + machNumber);
+ float pseudoLanchesterNumber = machNumber / (reynoldsNumber + machNumber);
for(int i = 0; i < _currentAeroSections.Count; i++)
- _currentAeroSections[i].PredictionCalculateAeroForces(density, machNumber, reynoldsPerLength, pseudoKuttaNumber, skinFriction, velocityWorldVector, center);
+ _currentAeroSections[i].PredictionCalculateAeroForces(density, machNumber, reynoldsPerLength, pseudoLanchesterNumber, skinFriction, velocityWorldVector, center);
for (int i = 0; i < _legacyWingModels.Count; i++)
_legacyWingModels[i].PrecomputeCenterOfLift(velocityWorldVector, machNumber, density, center);
diff --git a/FerramAerospaceResearch/FARAeroComponents/ModularFlightIntegratorRegisterer.cs b/FerramAerospaceResearch/FARAeroComponents/ModularFlightIntegratorRegisterer.cs
index 0152c911c..214f246cc 100644
--- a/FerramAerospaceResearch/FARAeroComponents/ModularFlightIntegratorRegisterer.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/ModularFlightIntegratorRegisterer.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -122,7 +122,6 @@ void UpdateAerodynamics(ModularFI.ModularFlightIntegrator fi, Part part)
part.DragCubes.SetDrag(part.dragVectorDirLocal, (float)fi.mach);
}
}
-
}
void CalculateLocalDynPresAndAngularDrag(ModularFI.ModularFlightIntegrator fi, Part p)
diff --git a/FerramAerospaceResearch/FARAeroComponents/VehicleAerodynamics.cs b/FerramAerospaceResearch/FARAeroComponents/VehicleAerodynamics.cs
index 76811660b..69fdf9b8c 100644
--- a/FerramAerospaceResearch/FARAeroComponents/VehicleAerodynamics.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/VehicleAerodynamics.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARAeroComponents/VesselIntakeRamDrag.cs b/FerramAerospaceResearch/FARAeroComponents/VesselIntakeRamDrag.cs
index 0d55a042e..8161515d9 100644
--- a/FerramAerospaceResearch/FARAeroComponents/VesselIntakeRamDrag.cs
+++ b/FerramAerospaceResearch/FARAeroComponents/VesselIntakeRamDrag.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARAeroUtil.cs b/FerramAerospaceResearch/FARAeroUtil.cs
index 0902ce9ed..f018ebdff 100644
--- a/FerramAerospaceResearch/FARAeroUtil.cs
+++ b/FerramAerospaceResearch/FARAeroUtil.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARDebugAndSettings.cs b/FerramAerospaceResearch/FARDebugAndSettings.cs
index 7f6fb8613..2fb2f175f 100644
--- a/FerramAerospaceResearch/FARDebugAndSettings.cs
+++ b/FerramAerospaceResearch/FARDebugAndSettings.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -170,7 +170,7 @@ public void OnGUI()
if (debugMenu)
{
- debugWinPos = GUILayout.Window("FARDebug".GetHashCode(), debugWinPos, debugWindow, "FAR Debug Options, v0.15.7.1", GUILayout.ExpandWidth(true), GUILayout.ExpandHeight(true));
+ debugWinPos = GUILayout.Window("FARDebug".GetHashCode(), debugWinPos, debugWindow, "FAR Debug Options, v0.15.7.2", GUILayout.ExpandWidth(true), GUILayout.ExpandHeight(true));
if (!inputLocked && debugWinPos.Contains(GUIUtils.GetMousePos()))
{
InputLockManager.SetControlLock(ControlTypes.KSC_ALL, "FARDebugLock");
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AeroStabilityConcern.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AeroStabilityConcern.cs
index 96fd1a496..456156d83 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AeroStabilityConcern.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AeroStabilityConcern.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AreaRulingConcern.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AreaRulingConcern.cs
index 03d02723c..1b8dcd8df 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AreaRulingConcern.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/DesignConcerns/AreaRulingConcern.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAeroCenter.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAeroCenter.cs
index 5a180ce2b..d925119d7 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAeroCenter.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAeroCenter.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAreaRulingOverlay.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAreaRulingOverlay.cs
index 942722be1..698bd8704 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAreaRulingOverlay.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorAreaRulingOverlay.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorGUI.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorGUI.cs
index 0c3a1cfdd..3920677e7 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/EditorGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EditorSimManager.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EditorSimManager.cs
index f4b120806..f55856911 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EditorSimManager.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EditorSimManager.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EquationSystem.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EquationSystem.cs
index 046150220..41ea9b601 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EquationSystem.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/EquationSystem.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/GraphData.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/GraphData.cs
index 7fc6afda7..f4886979e 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/GraphData.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/GraphData.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSim.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSim.cs
index db303ca83..e3b9f8aff 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSim.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSim.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimInput.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimInput.cs
index fcd6d463c..8021d186c 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimInput.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimInput.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimOutput.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimOutput.cs
index 969f17868..f7e1b55c0 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimOutput.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/InstantConditionSimOutput.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeKutta.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeKutta.cs
index 70e88772f..c5b8365a7 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeKutta.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeKutta.cs
@@ -1,5 +1,5 @@
/*
-<<<<<<< HEAD:FerramAerospaceResearch/FARRungeKutta.cs
+<<<<<<< HEAD:FerramAerospaceResearch/FARRungeLanchester.cs
Ferram Aerospace Research v0.14.7
Copyright 2014, Michael Ferrara, aka Ferram4
@@ -34,7 +34,7 @@ You should have received a copy of the GNU General Public License
* Toolbar integration powered by blizzy78's Toolbar plugin; used with permission
* http://forum.kerbalspaceprogram.com/threads/60863
=======
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -75,7 +75,7 @@ You should have received a copy of the GNU General Public License
Toolbar integration powered by blizzy78's Toolbar plugin; used with permission
http://forum.kerbalspaceprogram.com/threads/60863
->>>>>>> 89b2865ff34b6d3d23d7e6860f7820d7aa80af02:FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeKutta.cs
+>>>>>>> 89b2865ff34b6d3d23d7e6860f7820d7aa80af02:FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/RungeLanchester.cs
*/
using System;
@@ -85,7 +85,7 @@ You should have received a copy of the GNU General Public License
namespace FerramAerospaceResearch.FARGUI.FAREditorGUI.Simulation
{
- class RungeKutta4
+ class RungeLanchester4
{
// Vector4 a = new Vector4(0, 0.5f, 0.5f, 1);
Vector4 c = new Vector4(1f / 6, 1f / 3, 1f / 3, 1f / 6);
@@ -101,7 +101,7 @@ class RungeKutta4
public double[,] soln;
public double[] time;
- public RungeKutta4(double endTime, double dt, SimMatrix eqns, double[] initCond)
+ public RungeLanchester4(double endTime, double dt, SimMatrix eqns, double[] initCond)
{
// b.Add(0.5f, 0, 1);
// b.Add(0.5f, 1, 2);
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivApproxSim.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivApproxSim.cs
index 372d51d29..9914683d2 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivApproxSim.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivApproxSim.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -135,7 +135,7 @@ public GraphData RunTransientSimLateral(StabilityDerivOutput vehicleData, double
*
*
*/
- RungeKutta4 transSolve = new RungeKutta4(endTime, initDt, A, InitCond);
+ RungeLanchester4 transSolve = new RungeLanchester4(endTime, initDt, A, InitCond);
transSolve.Solve();
GraphData lines = new GraphData();
@@ -226,7 +226,7 @@ public GraphData RunTransientSimLongitudinal(StabilityDerivOutput vehicleData, d
*
*/
- RungeKutta4 transSolve = new RungeKutta4(endTime, initDt, A, InitCond);
+ RungeLanchester4 transSolve = new RungeLanchester4(endTime, initDt, A, InitCond);
transSolve.Solve();
GraphData lines = new GraphData();
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivCalculator.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivCalculator.cs
index 14c23f050..7072f6cbe 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivCalculator.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivCalculator.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivOutput.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivOutput.cs
index 79015c707..f9ee0eae5 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivOutput.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/StabilityDerivOutput.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/SweepSim.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/SweepSim.cs
index 8da74988d..66d78a20e 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/SweepSim.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/Simulation/SweepSim.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivGUI.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivGUI.cs
index e13dff04f..2e059ab78 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivSimulationGUI.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivSimulationGUI.cs
index 2d52afcc6..4be26a35d 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivSimulationGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StabilityDerivSimulationGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StaticAnalysisGraphGUI.cs b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StaticAnalysisGraphGUI.cs
index 26c82d728..ec3d01885 100644
--- a/FerramAerospaceResearch/FARGUI/FAREditorGUI/StaticAnalysisGraphGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FAREditorGUI/StaticAnalysisGraphGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/AeroVisualizationGUI.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/AeroVisualizationGUI.cs
index df24a2880..1f9d52b3a 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/AeroVisualizationGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/AeroVisualizationGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/AirspeedSettingsGUI.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/AirspeedSettingsGUI.cs
index 5498ef9aa..d74d9671a 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/AirspeedSettingsGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/AirspeedSettingsGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightDataGUI.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightDataGUI.cs
index 46f3ca509..6bee2c678 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightDataGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightDataGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightGUI.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightGUI.cs
index 9ae277841..32df80768 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -273,7 +273,7 @@ void OnGUI()
}
if (_vessel == FlightGlobals.ActiveVessel && showGUI && showAllGUI)
{
- mainGuiRect = GUILayout.Window(this.GetHashCode(), mainGuiRect, MainFlightGUIWindow, "FAR, v0.15.7.1 'Kutta'", GUILayout.MinWidth(230));
+ mainGuiRect = GUILayout.Window(this.GetHashCode(), mainGuiRect, MainFlightGUIWindow, "FAR, v0.15.7.2 'Lanchester'", GUILayout.MinWidth(230));
GUIUtils.ClampToScreen(mainGuiRect);
if (showFlightDataWindow)
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightStatusGUI.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightStatusGUI.cs
index 71cbf5a6c..e72aedb6d 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightStatusGUI.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/FlightStatusGUI.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/InternalSpeedFAR.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/InternalSpeedFAR.cs
index fad896f3a..596852a79 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/InternalSpeedFAR.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/InternalSpeedFAR.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/PhysicsCalcs.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/PhysicsCalcs.cs
index f2731624a..3c694ae80 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/PhysicsCalcs.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/PhysicsCalcs.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/StabilityAugmentation.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/StabilityAugmentation.cs
index 5035b5c12..8d62482df 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/StabilityAugmentation.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/StabilityAugmentation.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/FARFlightGUI/VesselFlightInfo.cs b/FerramAerospaceResearch/FARGUI/FARFlightGUI/VesselFlightInfo.cs
index 573fd382a..f3f9f7ff4 100644
--- a/FerramAerospaceResearch/FARGUI/FARFlightGUI/VesselFlightInfo.cs
+++ b/FerramAerospaceResearch/FARGUI/FARFlightGUI/VesselFlightInfo.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/GUIColors.cs b/FerramAerospaceResearch/FARGUI/GUIColors.cs
index d51697d01..5a792688a 100644
--- a/FerramAerospaceResearch/FARGUI/GUIColors.cs
+++ b/FerramAerospaceResearch/FARGUI/GUIColors.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/GUIDropDown.cs b/FerramAerospaceResearch/FARGUI/GUIDropDown.cs
index 5eab3c292..f0a1384bc 100644
--- a/FerramAerospaceResearch/FARGUI/GUIDropDown.cs
+++ b/FerramAerospaceResearch/FARGUI/GUIDropDown.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARGUI/GUIUtils.cs b/FerramAerospaceResearch/FARGUI/GUIUtils.cs
index 59ed495cd..3bdbacb5d 100644
--- a/FerramAerospaceResearch/FARGUI/GUIUtils.cs
+++ b/FerramAerospaceResearch/FARGUI/GUIUtils.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARKSPAddonFlightScene.cs b/FerramAerospaceResearch/FARKSPAddonFlightScene.cs
index d8c4b8f7e..11a64e1c7 100644
--- a/FerramAerospaceResearch/FARKSPAddonFlightScene.cs
+++ b/FerramAerospaceResearch/FARKSPAddonFlightScene.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARKSPAddonMainMenuSetup.cs b/FerramAerospaceResearch/FARKSPAddonMainMenuSetup.cs
index cf5e83bb4..1f497c0aa 100644
--- a/FerramAerospaceResearch/FARKSPAddonMainMenuSetup.cs
+++ b/FerramAerospaceResearch/FARKSPAddonMainMenuSetup.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARMathUtil.cs b/FerramAerospaceResearch/FARMathUtil.cs
index 5dbcefb1a..3b7daef33 100644
--- a/FerramAerospaceResearch/FARMathUtil.cs
+++ b/FerramAerospaceResearch/FARMathUtil.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPM.cs b/FerramAerospaceResearch/FARPM.cs
index 772212aba..caa0567f7 100644
--- a/FerramAerospaceResearch/FARPM.cs
+++ b/FerramAerospaceResearch/FARPM.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartExtensions.cs b/FerramAerospaceResearch/FARPartExtensions.cs
index b0d78f9a9..1311bd42a 100644
--- a/FerramAerospaceResearch/FARPartExtensions.cs
+++ b/FerramAerospaceResearch/FARPartExtensions.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/DebugVisualVoxel.cs b/FerramAerospaceResearch/FARPartGeometry/DebugVisualVoxel.cs
index 8587c5a91..6879339af 100644
--- a/FerramAerospaceResearch/FARPartGeometry/DebugVisualVoxel.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/DebugVisualVoxel.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryMesh.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryMesh.cs
index ac162dec6..8bbf3dfd9 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryMesh.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryMesh.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/AirbreathingEngineCrossSectonAdjuster.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/AirbreathingEngineCrossSectonAdjuster.cs
index 406dda299..4a83bedd0 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/AirbreathingEngineCrossSectonAdjuster.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/AirbreathingEngineCrossSectonAdjuster.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/CompoundPartGeoUpdater.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/CompoundPartGeoUpdater.cs
index 06111a35b..8b13af1b3 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/CompoundPartGeoUpdater.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/CompoundPartGeoUpdater.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/ICrossSectionAdjuster.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/ICrossSectionAdjuster.cs
index d81ddff3a..e6bb6e65c 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/ICrossSectionAdjuster.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/ICrossSectionAdjuster.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IGeometryUpdater.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IGeometryUpdater.cs
index 8125165c7..bcd6c4a55 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IGeometryUpdater.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IGeometryUpdater.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntakeCrossSectionAdjuster.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntakeCrossSectionAdjuster.cs
index 68b2c5f88..08bc134e7 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntakeCrossSectionAdjuster.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntakeCrossSectionAdjuster.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntegratedIntakeEngineCrossSectionAdjuster.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntegratedIntakeEngineCrossSectionAdjuster.cs
index d9be3540e..0ae19e6a8 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntegratedIntakeEngineCrossSectionAdjuster.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/IntegratedIntakeEngineCrossSectionAdjuster.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockJettisonTransformGeoUpdater.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockJettisonTransformGeoUpdater.cs
index eb9497041..45831735e 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockJettisonTransformGeoUpdater.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockJettisonTransformGeoUpdater.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcAsteroidGeoUpdater.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcAsteroidGeoUpdater.cs
index f0d34aceb..b950c414c 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcAsteroidGeoUpdater.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcAsteroidGeoUpdater.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcFairingGeoUpdater.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcFairingGeoUpdater.cs
index a17f35bb7..f27a813fd 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcFairingGeoUpdater.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryModification/StockProcFairingGeoUpdater.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/GeometryPartModule.cs b/FerramAerospaceResearch/FARPartGeometry/GeometryPartModule.cs
index cc26e2e94..03d2e6bbd 100644
--- a/FerramAerospaceResearch/FARPartGeometry/GeometryPartModule.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/GeometryPartModule.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/MeshData.cs b/FerramAerospaceResearch/FARPartGeometry/MeshData.cs
index cc958a1ab..9e940a08c 100644
--- a/FerramAerospaceResearch/FARPartGeometry/MeshData.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/MeshData.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/PartGeometryExtensions.cs b/FerramAerospaceResearch/FARPartGeometry/PartGeometryExtensions.cs
index ce74d1008..66367a34f 100644
--- a/FerramAerospaceResearch/FARPartGeometry/PartGeometryExtensions.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/PartGeometryExtensions.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/PartSizePair.cs b/FerramAerospaceResearch/FARPartGeometry/PartSizePair.cs
index 5456fd90f..b399fa518 100644
--- a/FerramAerospaceResearch/FARPartGeometry/PartSizePair.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/PartSizePair.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/PartSizePair4Bit.cs b/FerramAerospaceResearch/FARPartGeometry/PartSizePair4Bit.cs
index 90f9b8e16..ceaf12d86 100644
--- a/FerramAerospaceResearch/FARPartGeometry/PartSizePair4Bit.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/PartSizePair4Bit.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/PartSizePair8Bit.cs b/FerramAerospaceResearch/FARPartGeometry/PartSizePair8Bit.cs
index 8e397582d..74c3b3234 100644
--- a/FerramAerospaceResearch/FARPartGeometry/PartSizePair8Bit.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/PartSizePair8Bit.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/PartTransformInfo.cs b/FerramAerospaceResearch/FARPartGeometry/PartTransformInfo.cs
index a4d68d8e3..9ffb90559 100644
--- a/FerramAerospaceResearch/FARPartGeometry/PartTransformInfo.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/PartTransformInfo.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/VehicleVoxel.cs b/FerramAerospaceResearch/FARPartGeometry/VehicleVoxel.cs
index 80b5ba5d0..86d83a55e 100644
--- a/FerramAerospaceResearch/FARPartGeometry/VehicleVoxel.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/VehicleVoxel.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/VoxelChunk.cs b/FerramAerospaceResearch/FARPartGeometry/VoxelChunk.cs
index 37433ca8a..e6e697952 100644
--- a/FerramAerospaceResearch/FARPartGeometry/VoxelChunk.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/VoxelChunk.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARPartGeometry/VoxelCrossSection.cs b/FerramAerospaceResearch/FARPartGeometry/VoxelCrossSection.cs
index 98d12f479..4ee56cd2e 100644
--- a/FerramAerospaceResearch/FARPartGeometry/VoxelCrossSection.cs
+++ b/FerramAerospaceResearch/FARPartGeometry/VoxelCrossSection.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARSettingsScenarioModule.cs b/FerramAerospaceResearch/FARSettingsScenarioModule.cs
index 90a5229a3..c23e1e8a7 100644
--- a/FerramAerospaceResearch/FARSettingsScenarioModule.cs
+++ b/FerramAerospaceResearch/FARSettingsScenarioModule.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARThreading/ThreadBarrier.cs b/FerramAerospaceResearch/FARThreading/ThreadBarrier.cs
index 86d2b8d47..864a87e28 100644
--- a/FerramAerospaceResearch/FARThreading/ThreadBarrier.cs
+++ b/FerramAerospaceResearch/FARThreading/ThreadBarrier.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARThreading/ThreadSafeDebugLogger.cs b/FerramAerospaceResearch/FARThreading/ThreadSafeDebugLogger.cs
index 89e30539e..4c08f5675 100644
--- a/FerramAerospaceResearch/FARThreading/ThreadSafeDebugLogger.cs
+++ b/FerramAerospaceResearch/FARThreading/ThreadSafeDebugLogger.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARThreading/VoxelizationThreadpool.cs b/FerramAerospaceResearch/FARThreading/VoxelizationThreadpool.cs
index fcf277133..7a5455722 100644
--- a/FerramAerospaceResearch/FARThreading/VoxelizationThreadpool.cs
+++ b/FerramAerospaceResearch/FARThreading/VoxelizationThreadpool.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FARWind.cs b/FerramAerospaceResearch/FARWind.cs
index e232cfde8..fa74a3774 100644
--- a/FerramAerospaceResearch/FARWind.cs
+++ b/FerramAerospaceResearch/FARWind.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/FerramAerospaceResearch.csproj b/FerramAerospaceResearch/FerramAerospaceResearch.csproj
index a824f8fef..4de1ecea7 100644
--- a/FerramAerospaceResearch/FerramAerospaceResearch.csproj
+++ b/FerramAerospaceResearch/FerramAerospaceResearch.csproj
@@ -57,7 +57,7 @@
False
- ..\..\..\..\Games\KSP 1.1\GameData\ModularFlightIntegrator\ModularFlightIntegrator.dll
+ ..\..\..\..\Games\KSP 1.1.3\GameData\ModularFlightIntegrator\ModularFlightIntegrator.dll
False
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARAction.cs b/FerramAerospaceResearch/LEGACYferram4/FARAction.cs
index 89f7a4b74..438f20203 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARAction.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARAction.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARAeroStress.cs b/FerramAerospaceResearch/LEGACYferram4/FARAeroStress.cs
index afb8d05f6..697ffd8bc 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARAeroStress.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARAeroStress.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARBaseAerodynamics.cs b/FerramAerospaceResearch/LEGACYferram4/FARBaseAerodynamics.cs
index dc4857ac7..3417d86b1 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARBaseAerodynamics.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARBaseAerodynamics.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARCenterQuery.cs b/FerramAerospaceResearch/LEGACYferram4/FARCenterQuery.cs
index 3e096c79b..b73fa4bfb 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARCenterQuery.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARCenterQuery.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARControllableSurface.cs b/FerramAerospaceResearch/LEGACYferram4/FARControllableSurface.cs
index 43504400c..167c8e756 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARControllableSurface.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARControllableSurface.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARPartModule.cs b/FerramAerospaceResearch/LEGACYferram4/FARPartModule.cs
index 8be5978dc..e5333bca4 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARPartModule.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARPartModule.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARWingAerodynamicModel.cs b/FerramAerospaceResearch/LEGACYferram4/FARWingAerodynamicModel.cs
index 39d18dfb7..acc7deee8 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARWingAerodynamicModel.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARWingAerodynamicModel.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/LEGACYferram4/FARWingInteraction.cs b/FerramAerospaceResearch/LEGACYferram4/FARWingInteraction.cs
index 415875751..a09948dea 100644
--- a/FerramAerospaceResearch/LEGACYferram4/FARWingInteraction.cs
+++ b/FerramAerospaceResearch/LEGACYferram4/FARWingInteraction.cs
@@ -1,5 +1,5 @@
/*
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
diff --git a/FerramAerospaceResearch/Properties/AssemblyInfo.cs b/FerramAerospaceResearch/Properties/AssemblyInfo.cs
index 491b1bc99..e450db019 100644
--- a/FerramAerospaceResearch/Properties/AssemblyInfo.cs
+++ b/FerramAerospaceResearch/Properties/AssemblyInfo.cs
@@ -35,6 +35,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.15.6.3")]
-[assembly: AssemblyFileVersion("0.15.6.3")]
+[assembly: AssemblyVersion("0.15.7.2")]
+[assembly: AssemblyFileVersion("0.15.7.2")]
[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]
diff --git a/FerramAerospaceResearch/RealChuteLite/ChuteCalculator.cs b/FerramAerospaceResearch/RealChuteLite/ChuteCalculator.cs
index b7047fb14..a1f383593 100644
--- a/FerramAerospaceResearch/RealChuteLite/ChuteCalculator.cs
+++ b/FerramAerospaceResearch/RealChuteLite/ChuteCalculator.cs
@@ -40,8 +40,9 @@ private static float GetApparentDiameter(DragCube cube)
{
area += cube.Area[i] * cube.Drag[i]
* PhysicsGlobals.DragCurveValue((Vector3.Dot(Vector3.up, DragCubeList.GetFaceDirection((DragCube.DragFace)i)) + 1) * 0.5f, 0);
+
}
- return (float)Math.Max(Math.Round(Math.Sqrt((area * PhysicsGlobals.DragCubeMultiplier * PhysicsGlobals.DragMultiplier) / Math.PI) * 2, 1, MidpointRounding.AwayFromZero), 0.1);
+ return (float)Math.Max(Math.Round(Math.Sqrt((area * 0.1f * PhysicsGlobals.DragMultiplier) / Math.PI) * 2, 1, MidpointRounding.AwayFromZero), 0.1);
}
#endregion
}
diff --git a/FerramAerospaceResearch/RealChuteLite/RealChuteFAR.cs b/FerramAerospaceResearch/RealChuteLite/RealChuteFAR.cs
index 836b6e3ea..4a023ad27 100644
--- a/FerramAerospaceResearch/RealChuteLite/RealChuteFAR.cs
+++ b/FerramAerospaceResearch/RealChuteLite/RealChuteFAR.cs
@@ -91,7 +91,7 @@ public enum SafeState
public bool invertCanopy = true;
//Persistant fields
- [KSPField(isPersistant = true)]
+ [KSPField(isPersistant = false)] //this cannot be persistent to ensure that bad values aren't saved, and since these chutes aren't customizable there's no reason to save this
public float preDeployedDiameter = 1, deployedDiameter = 25;
[KSPField(isPersistant = true)]
public float caseMass, time;
diff --git a/GameData/FerramAerospaceResearch/FAR.version b/GameData/FerramAerospaceResearch/FAR.version
index 2a518bc03..9ff9f26e0 100644
--- a/GameData/FerramAerospaceResearch/FAR.version
+++ b/GameData/FerramAerospaceResearch/FAR.version
@@ -10,7 +10,7 @@
"MAJOR" : 0,
"MINOR" : 15,
"PATCH" : 7,
- "BUILD" : 1
+ "BUILD" : 2
},
"KSP_VERSION_MIN" : {
"MAJOR" : 1,
diff --git a/GameData/FerramAerospaceResearch/Plugins/FerramAerospaceResearch.dll b/GameData/FerramAerospaceResearch/Plugins/FerramAerospaceResearch.dll
index 0944a837f..2219bfd31 100644
Binary files a/GameData/FerramAerospaceResearch/Plugins/FerramAerospaceResearch.dll and b/GameData/FerramAerospaceResearch/Plugins/FerramAerospaceResearch.dll differ
diff --git a/README.md b/README.md
index e905a1443..e01a95478 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Ferram Aerospace Research v0.15.7.1 "Kutta"
+Ferram Aerospace Research v0.15.7.2 "Lanchester"
=========================
Aerodynamics model for Kerbal Space Program
@@ -64,6 +64,10 @@ Set all the other winglet/control surface values to zero
CHANGELOG
=======================================================
+0.15.7.2V "Lanchester"------------------------------------
+
+Fix a serious bug in v0.15.7 and v0.15.7.1 where chutes would not provide any drag
+
0.15.7.1V "Kutta"------------------------------------
Update to MFI 1.1.6 to fix an incompatibility with Kopernicus and the earlier version