Project Updated SLS for Orbiter 2016 (and 2010)

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
Ok I found this in the MS_doc:
HTML:
msgid=VMSG_USER prm=1 to obtain the MET (double)
and this in the sdk:
17.59.3.2 virtualintVESSEL3::clbkGeneric( intmsgid=0, intprm=0, void∗context=NULL ) [virtual] Generic multi-purpose callback function. Parameters msgid message identifier (see Generic vessel message identifiers) prm message parameter context pointer to additional message data
Returns Result flag.
trying to find a code example with this.

The cam of the MS2015 uses it to have the right MET displayed, here it is:

Code:
double Met;
v->clbkGeneric(VMSG_USER,1,&Met);
easy enough.
of course "v" must be the proper multistage vessel interface
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
The cam of the MS2015 uses it to have the right MET displayed, here it is:

Code:
double Met;
v->clbkGeneric(VMSG_USER,1,&Met);
easy enough.
of course "v" must be the proper multistage vessel interface
Thanks. Not sure what you mean by "proper multistage vessel interface"


Do you mean this:
Code:
int SLSTOWER2016::clbkGeneric (VMSG_USER,1,&Met);


if (MET==something) then animate?

Also trying to find a sequence. Like at What MET does the arms swing back,.....
 
Last edited:

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
Thanks. Not sure what you mean by "proper multistage vessel interface"


Do you mean this:
Code:
int SLSTOWER2016::clbkGeneric (VMSG_USER,1,&Met);


if (MET==something) then animate?

Also trying to find a sequence. Like at What MET does the arms swing back,.....

not exactly

something like
Code:
OBJHANDLE hvessel=oapiGetVesselByName("SLS"); //or whatever it is
VESSEL3 *v;
v=oapiGetVesselInterface(hvessel);
double Met;
v->clbkGeneric(VMSG_USER,1,&Met);

if((Met>something)&&(!animationtriggered))
{
trigger animation
}
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks. :salute:

Now I need to find when the arm retract,... based off of MET

---------- Post added at 04:23 PM ---------- Previous post was at 10:31 AM ----------

Thanks. I convert to Vessel 3 from 2.
Added this in the prestep;
//get MET and if more than ) animate
OBJHANDLE hvessel = oapiGetVesselByName("SLS"); //or whatever it is
VESSEL3 *v;
v = (VESSEL3*)oapiGetVesselInterface(hvessel);
double Met;
v->clbkGeneric(VMSG_USER, 1, &Met);
if ((Met > 0) && (LAUNCH_arm == false))
{
LAUNCH_arm = true;
}



And it works!

---------- Post added 01-19-17 at 04:49 AM ---------- Previous post was 01-18-17 at 04:23 PM ----------

Ok. I have this code. But I get a CTD if I add it into a scenario. I think I know why. Not sure how to fix, though

Code:
void SLSTOWER2::clbkPreStep(double SimT, double SimDT, double MJD) {

	VESSELSTATUS2 vs2;
	memset(&vs2, 0, sizeof(vs2));
	vs2.version = 2;
	GetStatusEx(&vs2);
	
	OBJHANDLE pad_handle = oapiGetObjectByName("LP39_SLS");
	VECTOR3 rpos;
	GetRelativePos(pad_handle, rpos);
	distance = length(rpos);

I have this on the crawler also. I think it CTD if the vessel LP39_SLS isn't in scenario
 

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
Ok. I have this code. But I get a CTD if I add it into a scenario. I think I know why. Not sure how to fix, though

Code:
void SLSTOWER2::clbkPreStep(double SimT, double SimDT, double MJD) {

	VESSELSTATUS2 vs2;
	memset(&vs2, 0, sizeof(vs2));
	vs2.version = 2;
	GetStatusEx(&vs2);
	
	OBJHANDLE pad_handle = oapiGetObjectByName("LP39_SLS");
	VECTOR3 rpos;
	GetRelativePos(pad_handle, rpos);
	distance = length(rpos);

I have this on the crawler also. I think it CTD if the vessel LP39_SLS isn't in scenario

Code:
if(oapiIsVessel(pad_handle))
{
...everything...
}

or maybe

Code:
if(pad_handle!=NULL)
{
...
}
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks works:thumbup:

---------- Post added at 05:33 AM ---------- Previous post was at 05:21 AM ----------

Ok. When I run the EM1 scenario the SLS takes off Super quick and spins crazy

here is the log
000021.895:
000021.895: **** Creating simulation session
000021.895: DirectDraw interface OK
000021.895: Direct3D interface OK
000021.895: Graphics: Viewport: Window 1914 x 1051 x 32
000021.895: Graphics: Hardware T&L capability: Yes
000021.895: Graphics: Z-buffer depth: 32 bit
000021.895: Graphics: Active lights supported: 8
000021.895: Loading 15382 records from star database
000021.895: ---------------------------------------------------------------
000021.895: >>> ERROR: DDraw error DDERR_BLTFASTCANTCLIP
000021.895: >>> [OrbiterGraphics::clbkBlt | .\OGraphics.cpp | 1633]
000021.895: ---------------------------------------------------------------
000000.000: Module Sun.dll ............... [Build 160828, API 160828]
VSOP87(E) Sun: Precision 1e-006, Terms 554/6634
000000.000: Module Mercury.dll ........... [Build 160828, API 160828]
VSOP87(B) Mercury: Precision 1e-005, Terms 167/7123
000000.000: Module Venus.dll ............. [Build 160828, API 160828]
000000.000: Module VenusAtm2006.dll ...... [Build 160828, API 160828]
VSOP87(B) Venus: Precision 1e-005, Terms 79/1710
000000.000: Module Earth.dll ............. [Build 160828, API 160828]
000000.000: Module EarthAtmJ71G.dll ...... [Build 160828, API 160828]
VSOP87(B) Earth: Precision 1e-008, Terms 2564/2564
000000.000: BaseObject: Parse error
000000.000: BaseObject: Parse error
000000.000: Module Moon.dll .............. [Build 160828, API 160828]
ELP82: Precision 1e-005, Terms 116/829
000000.000: Module Mars.dll .............. [Build 160828, API 160828]
000000.000: Module MarsAtm2006.dll ....... [Build 160828, API 160828]
VSOP87(B) Mars: Precision 1e-005, Terms 405/6400
000000.000: Module Phobos.dll ............ [Build ******, API 060425]
000000.000: Module Deimos.dll ............ [Build ******, API 060425]
000000.000: Module Galsat.dll ............ [Build 160828, API 160828]
000000.000: Module Jupiter.dll ........... [Build 160828, API 160828]
VSOP87(B) Jupiter: Precision 1e-006, Terms 1624/3625
000000.000: Module Io.dll ................ [Build 160828, API 160828]
000000.000: Module Europa.dll ............ [Build 160828, API 160828]
000000.000: Module Ganymede.dll .......... [Build 160828, API 160828]
000000.000: Module Callisto.dll .......... [Build 160828, API 160828]
000000.000: Module Satsat.dll ............ [Build 160828, API 160828]
000000.000: Module Saturn.dll ............ [Build 160828, API 160828]
VSOP87(B) Saturn: Precision 1e-006, Terms 2904/6365
000000.000: Module Mimas.dll ............. [Build 160828, API 160828]
SATSAT Mimas: Terms 113
000000.000: Module Enceladus.dll ......... [Build 160828, API 160828]
SATSAT Enceladus: Terms 33
000000.000: Module Tethys.dll ............ [Build 160828, API 160828]
SATSAT Tethys: Terms 101
000000.000: Module Dione.dll ............. [Build 160828, API 160828]
SATSAT Dione: Terms 59
000000.000: Module Rhea.dll .............. [Build 160828, API 160828]
SATSAT Rhea: Terms 68
000000.000: Module Titan.dll ............. [Build 160828, API 160828]
SATSAT Titan: Terms 100
000000.000: Module Iapetus.dll ........... [Build 160828, API 160828]
SATSAT Iapetus: Terms 605
000000.000: Module Uranus.dll ............ [Build 160828, API 160828]
VSOP87(B) Uranus: Precision 1e-006, Terms 1827/5269
000000.000: Module Miranda.dll ........... [Build ******, API 060425]
000000.000: Module Ariel.dll ............. [Build ******, API 060425]
000000.000: Module Umbriel.dll ........... [Build ******, API 060425]
000000.000: Module Titania.dll ........... [Build ******, API 060425]
000000.000: Module Oberon.dll ............ [Build ******, API 060425]
000000.000: Module Neptune.dll ........... [Build 160828, API 160828]
VSOP87(B) Neptune: Precision 1e-006, Terms 391/2024
000000.000: Finished initialising world
000000.000: Module Multistage2015.dll .... [Build 160930, API 160828]
000000.000: Multistage Version: 160929
000000.000: Load State Started
000000.000: SLS: Guidance File present: Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
000000.000: SLS: Orbit Call Found! Targets: Apogee:200000.0 Perigee:200000.0 Inclination:-29.6 Mode:1.0 GT initial Pitch: 76.5 Abside:200000.0
000000.000: SLS: Config File: C:\Orbiter2016\Config\Multistage2015\SLS_BLOCKIAORION_day.ini
000000.000: SLS: Number of stages in the ini file: 2
000000.000: SLS: Number of boosters group in the ini file: 3
000000.000: SLS: Number of Payloads in the ini file: 1
000000.000: SLS: LES Found
000000.000: SLS: This Rocket Has Fairing
000000.000: SLS: Texture n.1 Loaded Exhaust_atsme
000000.000: SLS: Texture n.2 Loaded SLS_2016\SSME_Exhaust
--------------------------- WARNING: --------------------------
>>> Texture not found: contrail.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: contrail.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
000000.000: SLS: booster n. 1 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 2 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 3 Tank Added: 0.200 kg
000000.000: SLS: Stage n. 2 Tank Added: 26853.000 kg
000000.000: SLS: Stage n. 1 Tank Added: 979452.000 kg
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.1
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.1
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: 2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.2
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.2
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: -2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.3
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.3
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: -2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.4
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: to engine n.4
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: 2.300 z: -32.208
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added: to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 1 number of engines: 1 , diameter: 0.010, position x: 6.300 y: 0.000 z: -33.000
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added: to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 2 number of engines: 1 , diameter: 0.010, position x: -6.300 y: 0.000 z: -33.000
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
000000.000: SLS: Stage n.1 Mesh Preloaded: SLS_2016\corerustET_1a_orion
000000.000: SLS: Stage n.1 Mesh Added Mesh: SLS_2016\corerustET_1a_orion @ x:-0.000 y:0.000 z:0.000
000000.000: SLS: Stage n.2 Mesh Preloaded: SLS_2016\SLS_ICPS2
000000.000: SLS: Stage n.2 Mesh Added Mesh: SLS_2016\SLS_ICPS2 @ x:0.000 y:0.000 z:38.250
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_s_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_s_1 @ x:6.300 y:0.000 z:-5.000
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_sl_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_sl_1 @ x:-6.300 y:0.000 z:-5.000
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_2
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_2 @ x:-6.300 y:0.000 z:-4.700
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_1
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_1 @ x:0.000 y:0.000 z:46.970
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_2
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_2 @ x:-0.000 y:-0.000 z:46.970
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_3
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_3 @ x:0.000 y:-0.000 z:46.970
000000.000: SLS: Les Mesh Preloaded
000000.000: SLS: Les Mesh Added Orion-MPCV\orion-las-tweaked @ x:0.000 y:0.000 z:48.500
000000.000: Load State Terminated
000000.000: Module SLSTOWER2.dll ......... [Build 161016, API 160828]
000000.000: Module LIGHTTOWER.dll ........ [Build 141213, API 100830]
000000.000: Module spotlight2.dll ........ [Build 110421, API 100830]
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
000000.000: Module MS_Camera.dll ......... [Build 160929, API 160828]
000000.000: MS_Camera: Target Vessel Loaded->SLS
000000.000: Finished initialising status
000000.000: Finished initialising camera
000000.000: Finished setting up render state
000000.000: Post Creation Started
000000.000: SLS: Gravity Turn Initial Pitch by user: 76.500 Calculated:84.300
000000.000: Creating Launchpad
000000.000: Module EmptyModule.dll ....... [Build 160921, API 160828]
000000.000: Orbiter version: 160828 . Ramp is created through scenario file procedure
000000.000: RESET PEG
000000.000: SLS: Planet Reference Pressure = 101325.0 Pa Atmosphere Altitude Limit:2500.0 km
000000.000: Post Creation Terminated
000000.000: Finished initialising panels
000000.000: Venting Effect Added @: 4.200,0.000,29.000 dir: 1.000,5.000,0.000
000000.000: Venting Effect Added @: 0.000,4.200,15.000 dir: 5.000,0.000,0.000
000026.755: SLS Booster n: 1 ignited @0.0
000026.755: SLS Booster n: 2 ignited @0.0
000026.755: SLS Booster n: 3 ignited @0.0
000027.380: SLS Stage n: 1 ignited @0.6
000027.619: Detached from Launchpad
000027.619: LaunchPad Deleted from Scenery
000076.764: SLS: Les jettisoned name: Orion-MPCV\orion-las-tweaked @50.008
000076.764: SLS: Fairing jettisoned: name SLS_2016\SLSORIONMPCVFAIR_1 @50.008
000076.764: SLS: Fairing jettisoned: name SLS_2016\SLSORIONMPCVFAIR_2 @50.008
000076.764: SLS: Fairing jettisoned: name SLS_2016\SLSORIONMPCVFAIR_3 @50.008
000084.387: **** Closing simulation session
saved scn:
SLS:Multistage2015
STATUS Orbiting Sun
RPOS -286854359092323320000000000.000 -114688534882671810000000000.000 -141497626486713000000000000.000
RVEL -4716516585914232700000000.0000 -1885731765415506900000000.0000 -2326532196700046300000000.0000
AROT 156.074 21.649 6.765
VROT -10793.9296 13737.6680 -4157.6662
AFCMODE 7
PRPLEVEL 0:0.535227 1:0.540509 2:0.540509 3:1.000000 4:0.839811
THLEVEL 0:0.851129 1:0.851129 2:0.851129 3:0.851129 16:1.000000 18:1.000000 20:1.000000 21:1.000000
NAVFREQ 0 0 0 0
XPDR 0
CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION_day.ini
GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
CONFIGURATION 1
CURRENT_BOOSTER 1
CURRENT_STAGE 1
CURRENT_INTERSTAGE 1
CURRENT_PAYLOAD 1
FAIRING 0
MET 57.632
GNC_RUN 1
BATTERY 5342.368169
GROWING_PARTICLES
STAGE_IGNITION_TIME 0.000000
STAGE_STATE 2
TELEMETRY_FILE Config\Multistage2015\Telemetry\SLS_EM1_Orion_GNC.txt
ALT_STEPS 100.0,350.0,1400.0,35000.0
PEG_PITCH_LIMIT 35.000
PEG_MC_INTERVAL 0.100
END

begin scn:
SLS:Multistage2015
STATUS Landed Earth
POS -80.6208970 28.6273640
HEADING 0.00
ALT 56.849
AROT 151.065 -8.240 4.530
ATTACHED 0:0,MS_LaunchPad_SLS
AFCMODE 7
PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000 4:1.000000 5:1.000000 6:1.000000 7:1.000000
NAVFREQ 0 0 0 0
XPDR 0
CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION_day.ini
GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
CONFIGURATION 0
CURRENT_BOOSTER 1
CURRENT_STAGE 1
CURRENT_INTERSTAGE 1
CURRENT_PAYLOAD 1
FAIRING 1
MET -10.000
BATTERY 5400.000000
GROWING_PARTICLES
STAGE_IGNITION_TIME 0.000000
STAGE_STATE 1
TELEMETRY_FILE Config\Multistage2015\Telemetry\SLS_EM1_Orion_GNC.txt
ALT_STEPS 100.0,350.0,1400.0,35000.0
PEG_PITCH_LIMIT 35.000
PEG_MC_INTERVAL 0.100
END

It is doing this on most flights now. It seems to rather than a steady take off it jumps into the air and then steady.
 
Last edited:

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
Are you using your own launchpad module? I see the default launch pad loading, but the initial scn talks about being attached to the launchpad at it seems inconsistent to me.

Can you post also the ini?
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Well Yes. But it is only attached to your MS_launchpad
Code:
ATTACHED 0:0,MS_LaunchPad_SLS

Should it be attached in flight?
Code:
SLS:Multistage2015
  STATUS Orbiting Earth
  RPOS 6394810355.813 -351516417.089 -8732060864.247
  RVEL 2884910772.5838 -151881119.2015 -3924181165.8726
  AROT -178.283 -51.873 106.832
  VROT -2591.6808 1066.9271 560.4564
  ATTACHED 0:0,MS_LaunchPad_SLS
  AFCMODE 7
  PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000 4:1.000000 5:1.000000 6:1.000000 7:0.997987
  THLEVEL 0:0.650073 1:0.650073 2:0.650073 3:0.650073
  NAVFREQ 0 0 0 0
  XPDR 0
  CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION_day.ini
  GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
  CONFIGURATION 0
  CURRENT_BOOSTER 1
  CURRENT_STAGE 1
  CURRENT_INTERSTAGE 1
  CURRENT_PAYLOAD 1
  FAIRING 1
  MET -2.022
  GNC_RUN 1
  BATTERY 5400.000000
  GROWING_PARTICLES 
  STAGE_IGNITION_TIME 0.000000
  STAGE_STATE 1
  TELEMETRY_FILE Config\Multistage2015\Telemetry\SLS_EM1_Orion_GNC.txt
  ALT_STEPS 100.0,350.0,1400.0,35000.0
  PEG_PITCH_LIMIT 35.000
  PEG_MC_INTERVAL 0.100
  RAMP 
END

It seems to do this at t-05

here is the ini:
Code:
[MISC]
cog=25.000
GNC_Debug=0
Telemetry=0
Focus=1
Thrust_real_pos=0
Vertical_Angle=0.000

[TEXTURE_LIST]
TEX_1=Exhaust_atsme
TEX_2=SLS_2016\SSME_Exhaust

[PARTICLESTREAM_1]
Name=vent
amin =1e-006
amax =1.000
atmslowdown =4.000
growthrate =1.900
lifetime =1.500
lmax =0.500
lmin =0
srcrate =8.000
srcsize =0.400
v0 =0.500
ltype =EMISSIVE
atmsmap =ATM_PLOG
levelmap =LVL_PSQRT
tex =contrail
Srcspread=0.000
GrowFactor_size=20.000
GrowFactor_rate=8.000

[PARTICLESTREAM_2]
NAME=mach
SRCSIZE=12
SRCRATE=20
V0=50.1
SRCSPREAD=0
LIFETIME=0.04
GROWTHRATE=10
ATMSLOWDOWN=0
LTYPE=EMISSIVE
LEVELMAP=LVL_PSQRT
LMIN=0
LMAX=4
ATMSMAP=ATM_PLOG
AMIN=0.7e-7
AMAX=1
TEX= contrail

[PARTICLESTREAM_3]
Name=EMISSIVE_contrail
Srcsize=12.000
Srcrate=35.000
V0=300.000
Srcspread=0.200
Lifetime=10.000
Growthrate=6.000
Atmslowdown=1.300
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0.8
Lmax=9.000
Atmsmap=ATM_PLOG
Amin=1e-006
Amax=1.000
Tex=SLS_2016/SLS_SRB_contrail
GrowFactor_size=1.400
GrowFactor_rate=4.000

[PARTICLESTREAM_4]
Name=SRB_exhaust
Srcsize=2.500
Srcrate=200.000
V0=100.000
Srcspread=0.000
Lifetime=1.500
Growthrate=11.000
Atmslowdown=0.300
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0
Lmax=1.000
Atmsmap=ATM_PLOG
Amin=1e-006
Amax=1.000
Tex=SLS_2016/SLS_SRB_exhaust
GrowFactor_size=1.100
GrowFactor_rate=2.000

[PARTICLESTREAM_5]
Name=DIFFUSE_contrail
Srcsize=10.000
Srcrate=40.000
V0=300.000
Srcspread=0.200
Lifetime=10.000
Growthrate=6.000
Atmslowdown=1.300
Ltype=DIFFUSE
Levelmap=LVL_PSQRT
Lmin=0.8
Lmax=9.000
Atmsmap=ATM_PLOG
Amin=1e-006
Amax=1.000
Tex=SLS_2016/SLS_SRB_contrail
GrowFactor_size=1.400
GrowFactor_rate=4.000

[PARTICLESTREAM_6]
Name=Launchfx
Srcsize=10.000
Srcrate=30.000
V0=170.000
Srcspread=0.200
Lifetime=8.000
Growthrate=10.000
Atmslowdown=0.300
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0.8
Lmax=1.000
Atmsmap=ATM_PLOG
Amin=1e-006
Amax=1.000
Tex=SLS_2016/SLS_SRB_contrail

[PARTICLESTREAM_8]
Name=Exhdetail
Srcsize=0.700
Srcrate=10.000
V0=50.4
Srcspread=0.000
Lifetime=0.015
Growthrate=0.000
Atmslowdown=0.100
Ltype=EMISSIVE
Levelmap=LVL_FLAT
Lmin=1
Lmax=1.000
Atmsmap=ATM_FLAT
Amin=1
Amax=1.000
Tex=SLS_2016\SSME_Exhaust_Detail

[PARTICLESTREAM_9]
Name=Ice
Srcsize=0.150
Srcrate=0.500
V0=10.000
Srcspread=0.000
Lifetime=5.000
Growthrate=0.000
Atmslowdown=0.000
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0
Lmax=1.000
Atmsmap=ATM_PLOG
Amin=1
Amax=1.000
Tex=SLS_2016/Ice_Part

[PARTICLESTREAM_10]
Name=Ice2
Srcsize=0.050
Srcrate=1.500
V0=10.000
Srcspread=0.000
Lifetime=5.000
Growthrate=0.000
Atmslowdown=0.000
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0
Lmax=1.000
Atmsmap=ATM_PLOG
Amin=1
Amax=1.000
Tex=SLS_2016/Ice_Part

[PARTICLESTREAM_11]
Name=Exhdetail2
Srcsize=1.000
Srcrate=10.000
V0=0.001
Srcspread=0.000
Lifetime=0.050
Growthrate=0.000
Atmslowdown=0.100
Ltype=EMISSIVE
Levelmap=LVL_FLAT
Lmin=1
Lmax=1.000
Atmsmap=ATM_FLAT
Amin=1
Amax=1.000
Tex=SLS_2016\SSME_Exhaust_Detail

[PARTICLESTREAM_12]
Name=SRB_exhaust_2
Srcsize=5.000
Srcrate=200.000
V0=400.000
Srcspread=0.000
Lifetime=0.500
Growthrate=35.000
Atmslowdown=0.300
Ltype=EMISSIVE
Levelmap=LVL_PSQRT
Lmin=0
Lmax=1.000
Atmsmap=ATM_PLOG
Amin=1e-006
Amax=1.000
Tex=SLS_2016/SLS_SRB_exhaust
GrowFactor_size=1.400
GrowFactor_rate=4.000

[PARTICLESTREAM_13]
Name=Engdetail
Srcsize=1.200
Srcrate=20.000
V0=0.100
Srcspread=10.000
Lifetime=0.010
Growthrate=0.000
Atmslowdown=0.000
Ltype=EMISSIVE
Levelmap=LVL_FLAT
Lmin=0.3
Lmax=1.000
Atmsmap=ATM_FLAT
Amin=0.3
Amax=1.000
Tex=SLS_2016/Ice_Part

[PARTICLESTREAM_7]
Name=Engdetail_2
Srcsize=0.800
Srcrate=5.000
V0=60.001
Srcspread=0.000
Lifetime=0.190
Growthrate=0.000
Atmslowdown=0.100
Ltype=EMISSIVE
Levelmap=LVL_FLAT
Lmin=1
Lmax=1.000
Atmsmap=ATM_FLAT
Amin=1
Amax=1.000
Tex=SLS_2016\SSME_Exhaust_Detail

[FX_LAUNCH]
N=2
Height=10.000
Angle=90.000
Distance=0.000
CutoffAltitude=800.000
Pstream1=launchfx
Pstream2=launchfx2     

[FX_VENT]
pstream=vent
off_1=(4.200,-1.000,30.000)
dir_1=(1.000,5.000,0.000)
time_fin_1=-5.000
off_2=(1.000,-4.200,15.000)
dir_2=(5.000,1.000,0.000)
time_fin_2=-5.000

[FX_MACH]
pstream=mach
mach_min=0.900
mach_max=1.300
off_1=(-1.000,0.000,18.000)
off_2=(1.000,0.000,18.000)
off_3=(-5.000,0.000,5.000)
dir=(0.000,0.000,-1.000)
Off_4=(5.000,0.000,5.000)
Off_5=(0.000,0.000,30.000)

[BOOSTER_1]
N=1
MeshName=SLS_2016\Orange-booster_s
Height=53.900
Diameter=3.710
EmptyMass=86363.600
FuelMass=622727.300
Thrust=16363630.640
angle=0.000
off=(6.300,0.000,-0.300)
BurnTime=124.000
eng_1=(0.000,0.000,-28.000)
eng_diameter=0.010
ENG_PSTREAM1=srb_exhaust
Speed=(15.000,-4.000,0.000)
Rot_speed=(-0.200,-0.400,0.000)
Eng_tex=
Eng_pstream1=SRB_exhaust
Eng_pstream2=srb_exhaust_2
BurnDelay=0.000
Expbolts_pos=(6.450,0.000,19.000)
Expbolts_pstream=exbolt
Expbolts_anticipation=1.000

[BOOSTER_2]
N=1
Angle=0.000
Meshname=SLS_2016\Orange-booster_sl
Off=(-6.300,0.000,-0.300)
Height=53.900
Diameter=3.710
Thrust=16363630.640
EmptyMass=86363.600
FuelMass=622727.300
Burntime=124.000
Eng_diameter=0.010
Eng_tex=
Eng_pstream1=srb_exhaust
Eng_pstream2=srb_exhaust_2
Speed=(-15.000,-4.000,0.000)
Rot_speed=(-0.200,0.400,0.000)
Eng_1=(0.000,0.000,-28.000)
BurnDelay=0.000
Expbolts_pos=(-6.450,0.000,19.000)
Expbolts_pstream=exbolt
Expbolts_anticipation=1.000

[BOOSTER_3]
N=2
Angle=0.000
Meshname=SLS_2016\dummy
Off=(6.300,0.000,0.000)
Height=0.001
Diameter=0.001
Thrust=0.001
EmptyMass=0.100
FuelMass=0.100
Burntime=124.000
Eng_diameter=0.010
Eng_tex=
Eng_pstream1=diffuse_contrail
Eng_pstream2=emissive_contrail
Speed=(0.000,0.000,0.000)
Rot_speed=(0.000,0.000,0.000)
Eng_1=(0.000,0.000,-90.000)
Eng_2=(0.000,0.000,-90.000)  
BurnDelay=0.000

[BOOSTER_4]
N=3
Angle=90.000
Meshname=SLS_2016\dummy
Off=(2.200,0.000,25.000)
Height=0.001
Diameter=0.001
Thrust=0.001
EmptyMass=0.100
FuelMass=0.100
Burntime=15.000
BurnDelay=0.000
eng_1=(2.000,0.000,2.500)
Eng_diameter=0.000
Eng_tex=
Eng_pstream1=ice
Eng_pstream2=ice2
Speed=(0.000,0.000,0.000)
Rot_speed=(0.000,0.000,0.000)
Eng_2=(1.000,3.000,0.000)
Eng_3=(2.000,1.700,5.000)
Eng_4=(2.000,-0.200,-2.500)

[BOOSTER_5]
N=1
Angle=0.000
Meshname=SLS_2016\dummy
Off=(0.000,0.000,0.000)
Height=0.001
Diameter=0.001
Thrust=0.001
EmptyMass=0.100
FuelMass=0.100
Burntime=441.000
BurnDelay=0.000
Eng_diameter=0.000
Eng_tex=
Eng_pstream1=exhdetail
Eng_pstream2=
Speed=(0.000,0.000,0.000)
Rot_speed=(0.000,0.000,0.000)
eng_1=(-2.300,2.300,-48.000)
eng_2=(-2.300,-2.300,-48.000)
eng_3=(2.300,-2.300,-48.000)
eng_4=(2.300,2.300,-48.000)

[BOOSTER_6]
N=1
Angle=0.000
Meshname=SLS_2016\dummy
Off=(0.000,0.000,0.000)
Height=0.001
Diameter=0.001
Thrust=0.001
EmptyMass=0.100
FuelMass=0.100
Burntime=441.000
BurnDelay=0.000
Eng_diameter=0.000
Eng_tex=
Eng_pstream1=exhdetail2
Eng_pstream2=
Speed=(0.000,0.000,0.000)
Rot_speed=(0.000,0.000,0.000)
eng_1=(-2.300,2.300,-46.208)
eng_2=(-2.300,-2.300,-46.208)
eng_3=(2.300,-2.300,-46.208)
eng_4=(2.300,2.300,-46.208)

[STAGE_1]
Height=63.720
Diameter=8.400
EmptyMass=85275.392 
FuelMass=979452.000 
Thrust=9116000.375
BurnTime=476.000
off=(0.000,0.000,4.700)
MeshName=SLS_2016\corerustET_1a_orion
eng_1=(-2.300,2.300,-32.208)
eng_2=(-2.300,-2.300,-32.208)
eng_3=(2.300,-2.300,-32.208)
eng_4=(2.300,2.300,-32.208)
eng_diameter=2.400
PITCHTHRUST=14193633.100 
YAWTHRUST=14193633.100 
speed=(0.000,0.000,-2.000)
ENG_PSTREAM1=engdetail_2
battery=1.500
Reignitable=1
Eng_tex=SLS_2016\SSME_Exhaust
Eng_pstream2=engdetail
Eng_dir=(0.000,0.000,1.000)
Module=Stage
Rot_speed=(0.000,0.000,0.000)

[STAGE_2]
MeshName=SLS_2016\SLS_ICPS2
Diameter=5.000
Height=13.700
EmptyMass=3765.000
FuelMass=26853.000
Thrust=110100.000
BurnTime=1125.000
ignite_delay=10.000
off=(0.000,0.000,42.950)
eng_1=(0.000,0.000,-6.500)
eng_diameter=2.700
ullage_thrust=10000.000
ullage_N=4
ullage_angle=-22.500
ullage_pos=(4.200,0.000,-10.700)
ullage_dir=(0.200,0.000,-1.000)
ullage_tex=Exhaust_atsme
ullage_length=5.000
ullage_diameter=1.000
ullage_anticipation=3.000
ullage_overlap=1.000
ullage_rectfactor=3.000
reignitable=1
Eng_tex=
Eng_pstream1=Engdetail_2
Eng_pstream2=Engdetail
Eng_dir=(0.000,0.000,1.000)
Module=Stage
Speed=(0.000,0.000,2.000)
Rot_speed=(0.000,0.000,0.000)

[FAIRING]
Meshname=SLS_2016\SLSORIONMPCVFAIR
Off=(0.000,0.000,51.600)
N=3
Angle=90.000
Height=6.000
Diameter=8.000
EmptyMass=1383.000
Module=stage
Speed=(8.000,0.000,0.000)
Rot_Speed=(0.700,0.000,0.000)

[LES]
Meshname=Orion-MPCV\orion-las-tweaked
Off=(0.000,0.000,53.120)
Height=13.000
Diameter=5.000
EmptyMass=5044.000
Module=stage
Speed=(0.000,-4.000,50.000)
Rot_speed=(0.000,0.400,0.000)   

[PAYLOAD_1]
MeshName=Orion-MPCV\orion-launch-white
off=(0.000,0.000,53.240)
Diameter=5.000
Height=8.000
MASS=23820.000
Module=Orion-MPCV\Orion-MPCV
Name=Orion
SPEED=(0.000,0.000,2.000)
RENDER=1
Rotation=(0.000,0.000,0.000)
Rot_speed=(0.000,0.000,0.000)
Live=1

[PAYLOAD_2]
Meshname=SLS_2016\Cubesat6U_ICECUBE
Off=(0.000,-1.411,49.140)
Rotation=(90,31,90)
Height=0.130
Diameter=0.100
Mass=13.000
Module=spacecraft\spacecraft4
Name=Cubesat6U_ICECUBE
Speed=(0.000,1.500,3.000)
Rot_speed=(0.000,0.000,0.000)
Render=1
Live=1

[PAYLOAD_3]
Meshname=SLS_2016\Cubesat6U_NEA
Off=(0.010,1.411,49.140)
Rotation=(90,-31,90)
Height=0.130
Diameter=0.100
Mass=13.000
Module=spacecraft\spacecraft4
Name=Cubesat6U_NEA
Speed=(0.000,-1.500,3.000)
Rot_speed=(0.000,0.000,0.000)
Render=1
Live=1

CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION_day.ini

and guidance
Multistage 2015 Automatically Generated Guidance File
Vehicle: SLS
-10.000 =orbit(185.00,1850.00,-29.62,-1.00,75.70,0.00)
-5.000 =engine(0.00,110.00,5.00,0.00,0.00,0.00)
50.000 =les(100.00,0.00,0.00,0.00,0.00,0.00)
50.000 =engine(100.00,85.00,3.00,0.00,0.00,0.00)
50.000 =fairing(85.00,0.00,0.00,0.00,0.00,0.00)
80.000 =engine(85.00,101.00,3.00,0.00,0.00,0.00)
300.000 =inverse(0.00,0.00,0.00,0.00,0.00,0.00)

I did have an attachment so that my crawler could move the tower and sls but I remove it for testing.

I deleted and reinstalled the files as someone else works
 
Last edited:

PDF

Addon Developer = Media Render
Joined
Jul 5, 2010
Messages
82
Reaction score
4
Points
8
Location
19951
Website
www.planetarydefensefoundation.com
I have the same files I tested both Orion SLS and Heavy SLS I launched with no issues into orbit with staging, If you like I will upload a copy of my Orbiter 2016 folder as compressed to my Google Drive account so you can download tomorrow - 1-20-17 ?
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks.
Do I need to use the emptymodule?
Code:
  ATTACHED 0:0,MS_LaunchPad_SLS

Code:
MS_LaunchPad_SLS:EmptyModule
  STATUS Landed Earth
  POS -80.6208910 28.6271778
  HEADING 180.30
  ALT 5.876
  AROT 151.047 -8.224 4.525
  ATTACHED 0:0,SLSTOWER2016
  AFCMODE 7
  NAVFREQ 0 0
END

Here I made a child attachment to the emptymodule which the SLS is attached. So that the rocket could be carryed on crawler/pad from VAb to hill.
ClassName=EmptyModule
Module=EmptyModule

BEGIN_ATTACHMENT
P 0.0 0 54.5 0 0 -1 0 1 0 SLSPAD
END_ATTACHMENT
I did a scenario where I removed the empty module and attached sls to slstower. No issues. But if I exit and restart a ctd.

---------- Post added at 07:13 AM ---------- Previous post was at 05:04 AM ----------

So the sls is attached to the MS_launchpad and it is attached to the SLStower. This is so the rocket can be moved via the slscrawler from VAb to hill. I thought it was the issue.

So Before I made the change for when MET is .... it worked. I had it set an MET>0 then animate and dettach happens.

So I set it to if MET>-5 do it. The rocket just bounce up.

So then I dettached the MS_launchpad from the Tower. When I press P the rocket just sets there.
 
Last edited:

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
I lost the track of what you did, so let me just recap of how ms2015 works:

1) it creates a ghost launchpad to which it attach itself while on ground.
2) custom launchpad modules (instead of emptymodule) can be used (i think it's pad_module call in the ini file, misc section, but check the docs and/or the DMD)
3) when you apply thrust and vertical force exceeds weight the attachment breaks and the rocket is free to fly. once the distance between the rocket and the pad is high enough the pad is deleted from scenery.

now, this works, and if you use your custom launchpad as "pad_module" it must work, if don't I'll check, but it always went good.

If you add your own module, with other attachments etc, trying to override the automatic it becomes quite messy because you add your part to what is done automatically so no wonder it doesn't work perfectly.

IIRC the ms2015 module adds the word "RAMP" to the scenario to understand that one pad has been created so there is no need to create another one when scenario is saved and reloaded from the ground, that's why I found strange that the rocket was already attached to something but the word RAMP wasn't there.
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks. Ok. So If I want to have the rocket be attached to the tower I change the ini. I saw that in the doc.

Pad_Module=abc
Module name for Launchpad Module. If not present a default ghost Launchpad will be used. This can be very useful for add-on developers willing to have personalized pad for their launchers
 

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
Thanks. Ok. So If I want to have the rocket be attached to the tower I change the ini. I saw that in the doc.

Pad_Module=abc
Module name for Launchpad Module. If not present a default ghost Launchpad will be used. This can be very useful for add-on developers willing to have personalized pad for their launchers

Precisely :thumbup:
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Ok. And the scenario should have RAMP else a launchpad will be created, right?

RAMP If present it avoids the creation of a new Launchpad underneath the rocket

I may have to play with these.

The SLStower has 2 attachments. 1 is at the bottom for the crawler to attach to. It is a child. The other is a parent it is the top iof the pad.

So I guess the MS2015 vessel will attach to the top of the pad

---------- Post added at 04:05 PM ---------- Previous post was at 09:47 AM ----------

OK. I get a CTD on this scenario.

I removed the MS_launchpad and attached to the SLSTOWER2016. I changed the ini to show the pad module is SLSTOWER2016.

Code:
BEGIN_SHIPS
SLS:Multistage2015
  STATUS Landed Earth
  POS -80.6150975 28.6192244
  HEADING 26.13
  ALT -0.083
  AROT 151.047 -8.224 4.525
  ATTACHED 0:0,SLSTOWER2016
  AFCMODE 7
  PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000 4:1.000000
  NAVFREQ 0 0 0 0
  XPDR 0
  CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION_daynew.ini
  GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
  CONFIGURATION 0
  COMPLEX 
  CURRENT_BOOSTER 1
  CURRENT_STAGE 1
  CURRENT_INTERSTAGE 1
  CURRENT_PAYLOAD 1
  FAIRING 1
  MET -10.000
  BATTERY 5400.000000
  GROWING_PARTICLES 
  STAGE_IGNITION_TIME 0.000000
  STAGE_STATE 1
  TELEMETRY_FILE Config\Multistage2015\Telemetry\SLS_EM1_Orion_GNC.txt
  ALT_STEPS 200.0,350.0,1400.0,35000.0
  PEG_PITCH_LIMIT 35.000
  PEG_MC_INTERVAL 0.100
  RAMP 
END
SLSTOWER2016:SLSTOWER2016
  ARM_STATUS 0.7191 0.0000 0.0000 1.0000 0.0000 0.5705 0.0000 0.0000 0.0000 0.9815 0.3712 0.0000 0.0830 0.4736 0.0000 0.0000 0.7305 0.4759
  ARM2_STATUS 0.0034 0.0000 0.1682 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 
  POST 0 
  TOUCH -75.9000 
  STATUS Landed Earth
  POS -80.6208906 28.6272639
  HEADING 180.26
  ALT 75.714
  AROT -117.993 -4.170 171.728
  AFCMODE 7
  NAVFREQ 0 0
  XPDR 0
END
ini:
Code:
[MISC]
cog=25.000
GNC_Debug=0
Telemetry=0
Focus=1
Thrust_real_pos=0
Vertical_Angle=0.000
Pad_Module=SLSTOWER2016
Nothing in the log:
Code:
000000.000: Finished initialising world
000000.000: Module Multistage2015.dll .... [Build 161006, API 160828]
000000.000: Multistage Version: 161006
000000.000: Load State Started
000000.000: SLS: Guidance File present: Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
000000.000: SLS: Orbit Call Found! Targets: Apogee:1850000.0 Perigee:185000.0 Inclination:-29.6 Mode:-1.0 GT initial Pitch: 75.7 Abside:185000.0
000000.000: SLS: Config File: C:\Orbiter2016\Config\Multistage2015\SLS_BLOCKIAORION_daynew.ini
000000.000: SLS: Number of stages in the ini file: 2
000000.000: SLS: Number of boosters group in the ini file: 6
000000.000: SLS: Number of Payloads in the ini file: 3
000000.000: SLS: LES Found
000000.000: SLS: This Rocket Has Fairing
000000.000: SLS: Texture n.1 Loaded Exhaust_atsme
000000.000: SLS: Texture n.2 Loaded SLS_2016\SSME_Exhaust
000000.000: SLS: booster n. 1 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 2 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 3 Tank Added: 0.200 kg
000000.000: SLS: booster n. 4 Tank Added: 0.300 kg
000000.000: SLS: booster n. 5 Tank Added: 0.100 kg
000000.000: SLS: booster n. 6 Tank Added: 0.100 kg
000000.000: SLS: Stage n. 2 Tank Added: 26853.000 kg
000000.000: SLS: Stage n. 1 Tank Added: 979452.000 kg
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail_2 to engine n.1
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail to engine n.1
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: 2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail_2 to engine n.2
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail to engine n.2
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: -2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail_2 to engine n.3
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail to engine n.3
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: -2.300 z: -32.208
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail_2 to engine n.4
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added: engdetail to engine n.4
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: 2.300 z: -32.208
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added: srb_exhaust_2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 1 number of engines: 1 , diameter: 0.010, position x: 6.300 y: 0.000 z: -33.000
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added: srb_exhaust_2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 2 number of engines: 1 , diameter: 0.010, position x: -6.300 y: 0.000 z: -33.000
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.1
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 0.000 y: 4.200 z: 22.800
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.2
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -3.637 y: -2.100 z: 22.800
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.3
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.3
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 3.637 y: -2.100 z: 22.800
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.1
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -3.000 y: 3.200 z: 20.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.2
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -1.271 y: -4.198 z: 20.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.3
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.3
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 4.271 y: 0.998 z: 20.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.1
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -1.700 y: 4.200 z: 25.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.2
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -2.787 y: -3.572 z: 25.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.3
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.3
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 4.487 y: -0.628 z: 25.300
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.1
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 0.200 y: 4.200 z: 17.800
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.2
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: -3.737 y: -1.927 z: 17.800
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice to engine n.3
000000.000: SLS: Booster Group n.4 Engine Exhaust Stream Added: ice2 to engine n.3
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 4 number of engines: 4 , diameter: 0.000, position x: 3.537 y: -2.273 z: 17.800
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added: exhdetail to engine n.1
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 5 number of engines: 4 , diameter: 0.000, position x: -2.300 y: 2.300 z: -52.700
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added: exhdetail to engine n.1
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 5 number of engines: 4 , diameter: 0.000, position x: -2.300 y: -2.300 z: -52.700
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added: exhdetail to engine n.1
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 5 number of engines: 4 , diameter: 0.000, position x: 2.300 y: -2.300 z: -52.700
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added: exhdetail to engine n.1
000000.000: SLS: Booster Group n.5 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 5 number of engines: 4 , diameter: 0.000, position x: 2.300 y: 2.300 z: -52.700
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added: exhdetail2 to engine n.1
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 6 number of engines: 4 , diameter: 0.000, position x: -2.300 y: 2.300 z: -50.908
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added: exhdetail2 to engine n.1
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 6 number of engines: 4 , diameter: 0.000, position x: -2.300 y: -2.300 z: -50.908
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added: exhdetail2 to engine n.1
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 6 number of engines: 4 , diameter: 0.000, position x: 2.300 y: -2.300 z: -50.908
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added: exhdetail2 to engine n.1
000000.000: SLS: Booster Group n.6 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 6 number of engines: 4 , diameter: 0.000, position x: 2.300 y: 2.300 z: -50.908
000000.000: SLS: Stage n.1 Mesh Preloaded: SLS_2016\corerustET_1a_orion
000000.000: SLS: Stage n.1 Mesh Added Mesh: SLS_2016\corerustET_1a_orion @ x:0.000 y:0.000 z:0.000
000000.000: SLS: Stage n.2 Mesh Preloaded: SLS_2016\SLS_ICPS2
000000.000: SLS: Stage n.2 Mesh Added Mesh: SLS_2016\SLS_ICPS2 @ x:0.000 y:0.000 z:38.250
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_s_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_s_1 @ x:6.300 y:0.000 z:-5.000
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_sl_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_sl_1 @ x:-6.300 y:0.000 z:-5.000
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_2
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_2 @ x:-6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:0.000 y:2.200 z:20.300
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_2
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_2 @ x:-1.905 y:-1.100 z:20.300
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_3
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_3 @ x:1.905 y:-1.100 z:20.300
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:0.000 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:0.000 y:0.000 z:-4.700
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_1
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_1 @ x:0.000 y:0.000 z:46.900
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_2
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_2 @ x:-0.000 y:-0.000 z:46.900
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\SLSORIONMPCVFAIR_3
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\SLSORIONMPCVFAIR_3 @ x:0.000 y:-0.000 z:46.900
000000.000: SLS: Les Mesh Preloaded
000000.000: SLS: Les Mesh Added Orion-MPCV\orion-las-tweaked @ x:0.000 y:0.000 z:48.420
000000.000: Load State Terminated
000000.000: Module SLSTOWER2016C.dll ..... [Build 170120, API 160828]
000000.000: ---------------------------------------------------------------
000000.000: >>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
000000.000: At least one active module is accessing an obsolete interface function.
000000.000: Addons which rely on obsolete functions may not be compatible with
000000.000: future versions of Orbiter.
000000.000: ---------------------------------------------------------------
000000.000: Module LIGHTTOWER.dll ........ [Build 141213, API 100830]
000000.000: Module SLS_CRAWLER.dll ....... [Build 170119, API 160828]
000000.000: Module spotlight2.dll ........ [Build 110421, API 100830]
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
--------------------------- WARNING: --------------------------
>>> Texture not found: UMmuNasa.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
000000.000: Finished initialising status
000000.000: Finished initialising camera
000000.000: Finished setting up render state
000000.000: Post Creation Started
000000.000: Module Spacecraft4.dll ....... [Build 151223, API 100830]
============================ ERROR: ===========================
Mesh file name not provided
[MeshManager::LoadMesh | .\Mesh.cpp | 1237]
===============================================================
============================ ERROR: ===========================
Mesh file name not provided
[MeshManager::LoadMesh | .\Mesh.cpp | 1237]
===============================================================
000000.000: SLS: Gravity Turn Initial Pitch by user: 75.700 Calculated:82.400
 

barrygolden

Well-known member
Joined
Nov 3, 2009
Messages
949
Reaction score
298
Points
78
Location
North of Houston
I want to say thanks to gattispilot for taking the time today to bring the SLS to life for me. From what I can see this might be the shuttle fleet for 2016. With the MPCV or the cargo version it really looks and flies super, day or night. I know there is still work to do but when ready this is a super addon. Its time to give some thought to the missions like launch and servicing of the JWST and a trip to an asteroid or the gateway station then on to Mars .
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks. As I have told people I am one of many developing this.

So I got it to work in a vanilla orbiter 2016. But still have not gotten it to work with the MS_launchpad.

I changed the ini to show the
Code:
[MISC]
cog=25.000
GNC_Debug=0
Telemetry=0
Focus=1
Thrust_real_pos=0
Vertical_Angle=0.000
Pad_module=SLSTOWER2

But I get a CTD and nothing in the log
Code:
000000.000: Module Multistage2015.dll .... [Build 161006, API 160828]
000000.000: Multistage Version: 161006
000000.000: Load State Started
000000.000: SLS: Guidance File present: Config\Multistage2015\Guidance\SLS_BlockIb_LF_GNC.txt
000000.000: SLS: Orbit Call Found! Targets: Apogee:200000.0 Perigee:200000.0 Inclination:-29.7 Mode:1.0 GT initial Pitch: 78.0 Abside:200000.0
000000.000: SLS: Config File: C:\ORBITER2016TEST\Config\Multistage2015\SLS_BLOCKIBCARGO_LF_dayTEST.ini
000000.000: SLS: Number of Interstages in the ini file: 1
000000.000: SLS: Number of stages in the ini file: 2
000000.000: SLS: Number of boosters group in the ini file: 3
000000.000: SLS: Number of Payloads in the ini file: 2
000000.000: SLS: This Rocket Has Fairing
000000.000: SLS: Texture n.1 Loaded Exhaust_atsme
000000.000: SLS: booster n. 1 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 2 Tank Added: 622727.300 kg
000000.000: SLS: booster n. 3 Tank Added: 0.200 kg
000000.000: SLS: Stage n. 2 Tank Added: 129390.000 kg
000000.000: SLS: Stage n. 1 Tank Added: 894182.000 kg
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: 2.500 z: -32.708
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.2
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.2
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: -2.300 y: -2.500 z: -32.708
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.3
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.3
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: -2.500 z: -32.708
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.4
000000.000: SLS: Stage n.1 Engine Exhaust Stream Added:  to engine n.4
000000.000: SLS: Stage n. 1 Engines Exhaust Added--> number of engines: 4 , diameter: 2.400, position x: 2.300 y: 2.500 z: -32.708
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.1 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 1 number of engines: 1 , diameter: 0.010, position x: 6.300 y: 0.000 z: -32.700
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added: srb_exhaust to engine n.1
000000.000: SLS: Booster Group n.2 Engine Exhaust Stream Added:  to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 2 number of engines: 1 , diameter: 0.010, position x: -6.300 y: 0.000 z: -32.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.1
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.1
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: 6.300 y: 0.000 z: -94.700
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: diffuse_contrail to engine n.2
000000.000: SLS: Booster Group n.3 Engine Exhaust Stream Added: emissive_contrail to engine n.2
000000.000: SLS: Booster Engines Exhaust Added--> Booster Group: 3 number of engines: 2 , diameter: 0.010, position x: -6.300 y: 0.000 z: -94.700
--------------------------- WARNING: --------------------------
>>> Texture not found: pipeline.dds
Skipping.
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 1040]
---------------------------------------------------------------
000000.000: SLS: Stage n.1 Mesh Preloaded: SLS_2016\corerustET2
000000.000: SLS: Stage n.1 Mesh Added Mesh: SLS_2016\corerustET2 @ x:0.000 y:0.000 z:0.000
000000.000: SLS: Stage n.2 Mesh Preloaded: SLS_2016\EUS_ET
000000.000: SLS: Stage n.2 Mesh Added Mesh: SLS_2016\EUS_ET @ x:0.000 y:0.000 z:40.000
000000.000: SLS: Interstage Mesh Preloaded for Stage 2
000000.000: SLS: Interstage Mesh Added: SLS_2016\interstageET @ x:0.000 y:0.000 z:37.300
000000.000: SLS Payload Mesh Preloaded 1
000000.000: SLS: Payload n.1 Mesh Added: SLS\adapter @ x:0.000 y:0.000 z:46.300
000000.000: SLS Payload Mesh Preloaded 2
000000.000: SLS: Payload n.2 Mesh Added: SLS_2016\deadweight @ x:0.000 y:0.000 z:57.300
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_s_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_s_1 @ x:6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\Orange-booster_sl_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\Orange-booster_sl_1 @ x:-6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_1
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_1 @ x:6.300 y:0.000 z:-4.700
000000.000: SLS: Booster Mesh Preloaded: SLS_2016\dummy_2
000000.000: SLS: Booster Mesh Added Mesh: SLS_2016\dummy_2 @ x:-6.300 y:0.000 z:-4.700
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\fairing_1
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\fairing_1 @ x:0.000 y:0.000 z:62.800
000000.000: SLS: Fairing Mesh Preloaded: SLS_2016\fairing_2
000000.000: SLS: Fairing Mesh Added Mesh: SLS_2016\fairing_2 @ x:-0.000 y:0.000 z:62.800
000000.000: Load State Terminated
000000.000: Module SLSTOWER2.dll ......... [Build 150203, API 100830]
000000.000: ---------------------------------------------------------------
000000.000: >>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
000000.000: At least one active module is accessing an obsolete interface function.
000000.000: Addons which rely on obsolete functions may not be compatible with
000000.000: future versions of Orbiter.
000000.000: ---------------------------------------------------------------
000000.000: Module LIGHTTOWER.dll ........ [Build 150101, API 100830]
000000.000: Module spotlight2.dll ........ [Build 110421, API 100830]
000000.000: Finished initialising status
000000.000: Finished initialising camera
000000.000: Finished setting up render state
000000.000: Post Creation Started
000000.000: SLS: Gravity Turn Initial Pitch by user: 78.000 Calculated:85.250
 

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
As far as i can see there seems to be a mistake in the scn:

The ctd occurs during postcreation, that's when the launchpad should be created, but i can find the slstower2 creation log some lines before the beginning. There something wrong in the scn
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,704
Reaction score
2,681
Points
203
Location
Dallas, TX
Thanks. Here is the scn
Code:
SLS:Multistage2015
  STATUS Landed Earth
  POS -80.6040070 28.6083600
  HEADING 0.00
  ALT 61.010
  AROT 151.065 -8.240 4.530
  ATTACHED 0:0,SLSTOWER2
  AFCMODE 7
  PRPLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000 4:1.000000
  NAVFREQ 0 0 0 0
  XPDR 0
  CONFIG_FILE Config\Multistage2015\SLS_BLOCKIBCARGO_LF_dayTEST.ini
  GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_BlockIb_LF_GNC.txt
  CONFIGURATION 0
  CURRENT_BOOSTER 1
  CURRENT_STAGE 1
  CURRENT_INTERSTAGE 1
  CURRENT_PAYLOAD 1
  FAIRING 1
  MET -10.000
  BATTERY 5400.000000
  GROWING_PARTICLES 
  STAGE_IGNITION_TIME 0.000000
  STAGE_STATE 1
  TELEMETRY_FILE Config\Multistage2015\Telemetry\SLS_57310.61_TLM.txt
  ALT_STEPS 200.0,350.0,1400.0,35000.0
  PEG_PITCH_LIMIT 35.000
  PEG_MC_INTERVAL 0.100
  RAMP
END
SLSTOWER2:SLS\SLSTOWER2
  ARM_STATUS 0.7191 0.0000 0.0000 1.0000 0.0000 0.5705 0.0000 0.0000 0.0000 0.9815 0.0000 0.0000 0.0830 0.0000 0.0000 0.0000 0.0000 0.4759
  ARM2_STATUS 0.0034 0.0000 0.1682 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 
  POST 1 
  TOUCH -74.0430 
  STATUS Landed Earth
  POS -80.6040070 28.6084440
  HEADING 180.57
  ALT 73.857
  AROT -118.018 -3.869 171.717
  AFCMODE 7
  NAVFREQ 0 0
  XPDR 0
END
The tower is a separate vessel
 

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,667
Reaction score
104
Points
78
try not to put the word ramp and the slstower2 vessel. Let it load by itself, do your adjustment and then save the scenario, then reopen. Does it work?
 
Top