Project Updated SLS for Orbiter 2016 (and 2010)

fred18

Addon Developer
Addon Developer
Donator
Joined
Feb 2, 2012
Messages
1,666
Reaction score
100
Points
78
I'm sorry but I have zero in time in these days, so I'll be quick:

1) payload definitions in the cfg file are useless relevant to MS2015 (don't know if you are using some other code to read them)
2) in order to have a ms2015 vehicle there must be at least 1 stage, it's not possible to have just payloads. so define a stage_1 and then you can attach payload to it.
3) as far as I could see you're trying to modificate the ms2015 original code to make this, please be advised that the code is quite complicated and not well explained, I learned a lot since I did that code, so my best advise is to use it as it is and exploit it for what he has.

cheers
Fred
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
So on our crawler. I have been able to get it to move and turn. But not sure how to get it to crab walk?
this is my right turn code:
Code:
if ((i3 > 0)&&(FORWARD==1))//RIGHT TURN
	{
		VESSELSTATUS2 vs2;
		memset(&vs2, 0, sizeof(vs2));
		vs2.version = 2;
		GetStatusEx(&vs2);

		double dheading = .01;
		//double d_hdg = AngSpeed*oapiGetSimStep();
		double d_hdg = dheading*oapiGetSimStep();
		vs2.surf_hdg += d_hdg;

		if (vs2.surf_hdg>2 * PI){ vs2.surf_hdg -= 2 * PI; }

and straight forward
Code:
if (FORWARD==1)
		{

			VESSELSTATUS2 vs2;
			memset(&vs2, 0, sizeof(vs2));
			vs2.version = 2;
			GetStatusEx(&vs2);

			double d_lat = (Speed*oapiGetSimStep()*cos(vs2.surf_hdg)) / each_deg;
			double d_lng = (Speed*oapiGetSimStep()*sin(vs2.surf_hdg)) / each_deg;
			vs2.surf_lat += d_lat*RAD* targetSpeed;
			vs2.surf_lng += d_lng*RAD* targetSpeed;

It will be open source. Not sure what to put in the heading . Using combination of Fred's and the SSu code
 

BrianJ

Addon Developer
Addon Developer
Joined
Apr 19, 2008
Messages
1,676
Reaction score
900
Points
128
Location
Code 347
But not sure how to get it to crab walk?
Hi,
add or subtract PI/2 to your vs2.surf_hdg.
I think that will make it go crabwise.

Code:
if (FORWARD==1)
        {

            VESSELSTATUS2 vs2;
            memset(&vs2, 0, sizeof(vs2));
            vs2.version = 2;
            GetStatusEx(&vs2);


[COLOR=Red]double crab_hdg = vs2.surf_hdg + (PI/2);[/COLOR]

            double d_lat = (Speed*oapiGetSimStep()*cos([COLOR="Red"]crab_hdg[/COLOR])) / each_deg;
            double d_lng = (Speed*oapiGetSimStep()*sin([COLOR="red"]crab_hdg[/COLOR])) / each_deg;
            vs2.surf_lat += d_lat*RAD* targetSpeed;
            vs2.surf_lng += d_lng*RAD* targetSpeed;
 
Last edited:

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
So trying to determine the angle from the pad to the crawler.
Code:
OBJHANDLE pad_handle = oapiGetObjectByName("LP39_SLS");

	if (pad_handle != NULL && oapiIsVessel(pad_handle))
	{
		VECTOR3 rpos;
		GetRelativePos(pad_handle, rpos);
		distance = length(rpos);
		checkTouchdownPoints();
	}


	sprintf(oapiDebugString(), "rposX  %2.2f rposY  %2.2f rposZ  %2.2f",  rpos.x, rpos.y, rpos.z);

I can get the distance but I want to know the angles and then I set it to climb the hill or fall thru if not on the ramp
 

Nicholas Kang

Tutorial Publisher
Tutorial Publisher
News Reporter
Joined
Apr 3, 2016
Messages
522
Reaction score
10
Points
18
Location
-
It's Tuesday!

SLS for Orbiter 2016 is now available for download!

Kindly report any bugs here and leave this section for future developments of the SLS add-on.

Thanks for all parties involved in the development:

John Gattis (gattispilot): Developing some of the necessary textures, meshes, configuration files and modules for the LOP-Gateway and the SLS

Brian Jones (BrianJ): Beta-testing the add-on and designing trajectories for the EMs

Franz Barner (francisdrake): Providing the Orion MPCV spacecraft and support for the LES texture modifications

Dr. David Sundström (DaveS): Providing support for the Crawler lighting and structural designs

(fred18): Creating Multistage2015 for which this project heavily relies on

Derk and Friedrich (IronRain and Face): Providing advice on copyright issues

Dr. Martin Schweiger (martins): Creating this wonderful spaceflight simulator called Orbiter!

…and add-on developers who created great add-ons like IMFD, LTMFD, Lagrange MFD, users who support our project and OH admins who provide a platform for spaceflight enthusiasts to upload their add-ons.

Let me know if I missed out anybody! :p

(The team has tried their best to contact longjap but to no avail. We still acknowledge the original add-on author as longjap and the project is copyright by longjap, all rights reserved.)
 
Last edited:

Longjap

Active member
Joined
Jun 8, 2011
Messages
191
Reaction score
41
Points
28
Hi guys,
It seems I went missing for quite some time. Haha. Quite busy at other fronts right now.
You have my permission to use the meshes and textures, cubesats and stuff. I don't have the time at the moment to continue development.

But I would like the credits where credits are due and it would be nice to include me in the list of thanks in stead of a footnote of a missing person. ;)

Anyway, if you need any missing meshes or stuff I might find on my computer just ask. I'll try to check here more frequently.
BTW did the project move somewhere else and where can I download it now?
 

MikenJi

New member
Joined
Dec 2, 2016
Messages
20
Reaction score
1
Points
3
Anyone knows why I am getting this weird glitch where the Launch Escape shrout keeps reappearing on top of the Orion spacecraft even after the animation of the separation event?
 

Attachments

  • wut.JPG
    wut.JPG
    37.2 KB · Views: 19

Jeremyxxx

Active member
Joined
Jan 25, 2013
Messages
296
Reaction score
88
Points
43
Location
Dawson Springs
Anyone knows why I am getting this weird glitch where the Launch Escape shrout keeps reappearing on top of the Orion spacecraft even after the animation of the separation event?
This is hilarious! three Launch Escape systems spawning during launch!
 

MikenJi

New member
Joined
Dec 2, 2016
Messages
20
Reaction score
1
Points
3
This is hilarious! three Launch Escape systems spawning during launch!
It's more like even after I saved the .scn file post LES separation event, if I reopen the existing .scn file (or exit the simulator and open the newly saved .scn) the LES itself will spawn back on the Orion as if it never separated!
 

MikenJi

New member
Joined
Dec 2, 2016
Messages
20
Reaction score
1
Points
3
CAn you post the log and scn? It looks like multiple LES
Here are the .ini for the Orion capsule. Not sure what you mean by log thought


[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
 

MikenJi

New member
Joined
Dec 2, 2016
Messages
20
Reaction score
1
Points
3
CAn you post the log and scn? It looks like multiple LES
And here's the .scn



BEGIN_DESC

END_DESC

BEGIN_ENVIRONMENT
System Sol_SLS
Date MJD 58833.0019466048
Help CurrentState_img
END_ENVIRONMENT

BEGIN_FOCUS
Ship SLS
END_FOCUS

BEGIN_CAMERA
TARGET SLS
MODE Extern
POS 2.845187 105.030948 61.492080
TRACKMODE GlobalFrame
FOV 49.47
END_CAMERA

BEGIN_HUD
TYPE Orbit
REF AUTO
END_HUD

BEGIN_SHIPS
SLS:Multistage2015
STATUS Orbiting Earth
RPOS 5674365.229 2620434.347 1681502.812
RVEL 736.8225 -866.1048 2357.1789
AROT -24.305 -11.764 -119.499
VROT 0.1086 0.0702 -0.0004
AFCMODE 7
PRPLEVEL 0:0.641130 1:0.640529 2:1.000000 3:0.669758
THLEVEL 0:1.000000 1:1.000000 2:1.000000 3:1.000000 18:1.000000 19:1.000000
NAVFREQ 0 0 0 0
XPDR 0
CONFIG_FILE Config\Multistage2015\SLS_BLOCKIAORION.ini
GUIDANCE_FILE Config\Multistage2015\Guidance\SLS_EM1_Orion_GNC.txt
CONFIGURATION 1
COMPLEX
CURRENT_BOOSTER 5
CURRENT_STAGE 1
CURRENT_INTERSTAGE 1
CURRENT_PAYLOAD 1
FAIRING 0
MET 158.527
GNC_RUN 1
BATTERY 5241.473374
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
SLSTOWER2016EM1:SLSTOWER2016EM1
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
CAA 0 0.0000
LAUNCH 0 0.0000
TOUCH -75.9000
BEACON 0
END
LP39_SLS:SLS_PadA
STATUS Landed Earth
POS -80.6208910 28.6267320
HEADING 270.00
ALT 1.997
AROT -180.000 80.621 118.627
AFCMODE 7
NAVFREQ 0 0
END
WATERTOWER:SLS\WATERTOWER
STATUS Landed Earth
POS -80.6198650 28.6281920
HEADING 0.00
ALT 1.997
AROT 61.695 4.479 8.250
AFCMODE 7
NAVFREQ 0 0
END
LIGHTNING1:SLS\LIGHTNINGTOWER
STATUS Landed Earth
POS -80.6221750 28.6274220
HEADING 0.00
ALT -0.194
AROT 61.308 4.534 8.218
AFCMODE 7
NAVFREQ 0 0
XPDR 0
END
LIGHTNING2:SLS\LIGHTNINGTOWER
STATUS Landed Earth
POS -80.6194350 28.6275920
HEADING 0.00
ALT -0.194
AROT 61.308 4.535 8.220
AFCMODE 7
NAVFREQ 0 0
XPDR 0
END
LIGHTNING3:SLS\LIGHTNINGTOWER
STATUS Landed Earth
POS -80.6198650 28.6257520
HEADING 0.00
ALT -0.194
AROT 61.310 4.534 8.220
AFCMODE 7
NAVFREQ 0 0
XPDR 0
END
Orion:Orion-MPCV\Orion-MPCV
STATUS Orbiting Earth
RPOS 5674375.126 2620414.788 1681546.121
RVEL 736.8225 -866.1048 2357.1789
AROT -24.305 -11.764 -119.499
VROT 0.1086 0.0702 -0.0004
ATTACHED 1:0,SLS
AFCMODE 7
PRPLEVEL 0:1.000000
NAVFREQ 0 0
XPDR 468
MODE 0
END
Cubesat6U_ICECUBE:spacecraft\spacecraft4
STATUS Orbiting Earth
RPOS 5674375.492 2620417.176 1681542.520
RVEL 736.8225 -866.1048 2357.1789
AROT 59.115 28.820 -162.457
VROT 0.0604 0.0358 0.1086
ATTACHED 0:1,SLS
AFCMODE 7
PRPLEVEL 0:1.000000
NAVFREQ 0 0
CONFIGURATION 1
CURRENT_PAYLOAD 0
SEQ 0 -2 0.000000
SEQ 1 -2 0.000000
SEQ 2 -2 0.000000
SEQ 3 -2 0.000000
SEQ 4 -2 0.000000
END
Cubesat6U_NEA:spacecraft\spacecraft4
STATUS Orbiting Earth
RPOS 5674373.083 2620415.711 1681542.409
RVEL 736.8225 -866.1048 2357.1789
AROT 59.115 28.820 135.543
VROT 0.0599 -0.0365 0.1086
ATTACHED 0:2,SLS
AFCMODE 7
PRPLEVEL 0:1.000000
NAVFREQ 0 0
CONFIGURATION 1
CURRENT_PAYLOAD 0
SEQ 0 -2 0.000000
SEQ 1 -2 0.000000
SEQ 2 -2 0.000000
SEQ 3 -2 0.000000
SEQ 4 -2 0.000000
SEQ 5 -2 0.000000
END
SLS_2016\Orange-booster_s_1:Stage
STATUS Orbiting Earth
RPOS 5672743.465 2623374.063 1676030.088
RVEL 648.4736 -705.5791 2028.2008
AROT 49.236 0.529 -132.270
VROT -4.1976 -9.5840 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\Orange-booster_sl_1:Stage
STATUS Orbiting Earth
RPOS 5673249.334 2622585.095 1675562.474
RVEL 662.9516 -728.1556 2014.8211
AROT -103.457 -55.776 -62.460
VROT -4.2051 9.5927 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\dummy_1:Stage
STATUS Orbiting Earth
RPOS 5672884.209 2622901.149 1675820.865
RVEL 652.5410 -719.2733 2022.1330
AROT -33.012 4.217 -118.906
VROT 0.5974 -0.0063 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\dummy_2:Stage
STATUS Orbiting Earth
RPOS 5672890.270 2622891.689 1675815.186
RVEL 652.5407 -719.2728 2022.1333
AROT -33.012 4.217 -118.906
VROT 0.5974 -0.0063 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\dummy_1:Stage
STATUS Orbiting Earth
RPOS 5672898.828 2622879.671 1675858.296
RVEL 652.7145 -719.4731 2022.6517
AROT -40.398 17.072 -120.249
VROT 0.9572 -0.0064 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\dummy_2:Stage
STATUS Orbiting Earth
RPOS 5672902.470 2622880.100 1675857.250
RVEL 652.7148 -719.4729 2022.6519
AROT -40.404 17.082 -120.251
VROT 0.9576 -0.0064 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\dummy_3:Stage
STATUS Orbiting Earth
RPOS 5672900.637 2622882.961 1675858.967
RVEL 652.7149 -719.4730 2022.6518
AROT -40.404 17.082 -120.251
VROT 0.9576 -0.0064 -0.0001
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\SLSORIONMPCVFAIR_1:stage
STATUS Orbiting Earth
RPOS 5673905.546 2620988.246 1680086.716
RVEL 689.0564 -794.2224 2186.0789
AROT 24.195 -56.221 -149.965
VROT 38.0861 -0.0305 -0.0004
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\SLSORIONMPCVFAIR_2:stage
STATUS Orbiting Earth
RPOS 5674137.305 2621008.132 1680037.548
RVEL 702.5671 -793.0615 2183.2148
AROT 8.119 36.078 -112.410
VROT -19.0245 32.9559 -0.0004
AFCMODE 7
NAVFREQ 0 0
END
SLS_2016\SLSORIONMPCVFAIR_3:stage
STATUS Orbiting Earth
RPOS 5674022.790 2621186.792 1680144.667
RVEL 695.8934 -782.6496 2189.4574
AROT -80.940 -6.771 -108.965
VROT -19.0287 -33.0098 -0.0004
AFCMODE 7
NAVFREQ 0 0
END
Orion-MPCV\Orion-MPCV-LAS:Orion-MPCV\Orion-MPCV-LAS
STATUS Orbiting Earth
RPOS 5674393.827 2620392.512 1681603.362
RVEL 746.9181 -876.8985 2386.0215
AROT -58.809 -26.619 -107.677
VROT 0.0484 22.8651 -0.0004
AFCMODE 7
NAVFREQ 0 0
END
END_SHIPS

BEGIN_DX9ExtMFD
END
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
It has been a while but looks good. But it looks as if multiple LES are created?
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
Weird. I used your ini and scn. And the LAS is seperated but there is one on orion.
Can you post the launch scn
 

Attachments

  • slslas.jpg
    slslas.jpg
    29.9 KB · Views: 0

CreponChris

New member
Joined
Jul 21, 2021
Messages
7
Reaction score
3
Points
3
Location
Connecticut
I'm using this SLS by Puma from OrbitHangar Here - Is this just a totally different project? The other one linked to above "

Space Launch System for Orbiter 2016 0.1.2 Uploaded by gattispilot" I never quite got to work but maybe I'm missing dependencies. If anyone could tell me - for the first one I linked to, is there any keyboard shortcut reference anywhere? I take is the solar panels are supposed to be able to be deployed while the 2nd stage is still attached, about 16 minutes into flight according to the timeline for Artemis I on Wikipedia. Thanks.

 
Last edited:

CreponChris

New member
Joined
Jul 21, 2021
Messages
7
Reaction score
3
Points
3
Location
Connecticut
What didn't work?
Well for me in Orbiter 2016, the 2nd one I linked to that you just quoted me on doesn't load anything at all. Just crashes Orbiter on me. So I was wondering if there are key binds I don't know about for extending the solar panels or any other functions for the one I happen to use ("Space Launch System for Orbiter 2016") Thanks
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
Well for me in Orbiter 2016, the 2nd one I linked to that you just quoted me on doesn't load anything at all. Just crashes Orbiter on me. So I was wondering if there are key binds I don't know about for extending the solar panels or any other functions for the one I happen to use ("Space Launch System for Orbiter 2016") Thanks
So the upload I have doesn't work for you? Can you post the log. Let me look at the manual for Orion and see what key deploys the shields.
 
Top