Idea Shuttle Fleet recompile for Orbiter 2016

The IRIS ASE has gold, PAM-D did not. Not sure if IRIS ASE was a new model ASE or an improved PAM-D ASE.
 
Based off this image:
g6g9D5K.jpg

at least the inside of the doors are gold. And the door are more 2 sided on top.
yAI6GrG.jpg


Am not sure the alignment of the iss/iris in the ase. the spin motor has arm but in the drawing you can't tell what angle off center they are?

---------- Post added at 05:33 PM ---------- Previous post was at 03:52 AM ----------

So we get this:
DT5AnA6.jpg

texture the tank pressure conrol
Inside the ase:
IHcF7Cf.jpg

new ase texture
LW3K9Ur.jpg
 
I am stumped and no ideas really to fix it.
So the iss and Iris are attached together. The IRIS is inverted. So when I detach the IRIS goes back to the right way and no inverted.
BFBb74Z.jpg

so when detach the IRIS
wBH1a1X.jpg


you can see the IRIS is now NOT inverted
Code:
	if (key == OAPI_KEY_K)
	{
		OBJHANDLE hChild = GetAttachmentStatus(INTELSAT);
		DetachChild(INTELSAT, 0.0); // 0 m/s release
		if (oapiIsVessel(hChild)) {
			VESSEL *vChild = oapiGetVesselInterface(hChild);
			VECTOR3 vel;
			VECTOR3 avel;
			avel.y = 0;
			avel.x = 0;
			avel.z = 0;
			VESSELSTATUS vs;
			GetStatus(vs);
			GlobalRot(_V(0, 0, 5), vel);
			vs.rvel += vel;
			vChild->DefSetState(&vs);
			vChild->SetAngularVel(avel);

		}






		DetachChild(INTELSAT, .1);
		return 1;

	}

maybe use docking rather than attachments?
 
Maybe a negative value in one of the attachment numbers in the config that doesn’t match the scenario?
 
Docking works. But for 2010 you can have a docked vessel on the ground.

And when docked it undocked but not straight out. It was spinning.

So how important is the spinning? What if I code the vessel so the mesh is rotating but the vessel isn't.

---------- Post added at 07:36 PM ---------- Previous post was at 04:30 PM ----------

So I think I can do it with docking. BUT you will need to stop spinning and the undock.




JyJ2Y8b.jpg



I suppose the other way is to invert the IRIS mesh but then flying it may be weird as the forward thrust would be retro.

---------- Post added 10-06-19 at 05:57 AM ---------- Previous post was 10-05-19 at 07:36 PM ----------

Docking solved some issues but created it own. It does spin with the ISS. Also isn't seen. have to redock.

Maybe make a whole vessel that shows the ISS/IRIS as the same vessel press a key and now a IRIS vessel is made and LAgeos?

---------- Post added at 04:19 PM ---------- Previous post was at 05:57 AM ----------

So not sure if you can make a vessel and change it heading on creation?

Code:
void ISSIRIS::SeparateVESSELS(void)
{
	//if (HATCH_proc > .8){

		// Create MMU at docking port
	//	DOCKHANDLE hDock = GetDockHandle(1);
	//	if (GetDockStatus(hDock)) return; // something is already attached to this docking port

		//int i;
		char name[256];
		//OBJHANDLE hVessel;
		//for (i = 0;; i++) {
		//	sprintf(name, "%s-MMU-%d", GetName(), i + 1);
		//	hVessel = oapiGetVesselByName(name);
		//	if (!hVessel) break;
		//}

		VESSELSTATUS2 vs;
		vs.version = 2;
		vs.flag = 0;
		GetStatusEx(&vs);

		VECTOR3 ofs = _V(0, 0, -1);
		VECTOR3 rofs, rvel = { vs.rvel.x, vs.rvel.y, vs.rvel.z };
		VECTOR3 vel = { 0, 0, 0 };
		Local2Rel(ofs, vs.rpos);
		GlobalRot(vel, rofs);
		vs.rvel.x = rvel.x + rofs.x;
		vs.rvel.y = rvel.y + rofs.y;
		vs.rvel.z = rvel.z + rofs.z;
		vs.vrot.x = 0.00;
		vs.status = 0;


		hMMU = oapiCreateVesselEx( "IRIS", "STS52IRIS", &vs);

		VESSEL *STS52IRIS_vessel;
		//OBLIVIONBIKE = oapiCreateVesselEx("OBLIVIONBIKE52", "OBLIVIONBIKE52", &vs);
		STS52IRIS_vessel = oapiGetVesselInterface(hMMU);



		//VESSELSTATUS vs;
		//EVA = 1;
		//GetStatus(vs);
	//	hMMU = oapiCreateVessel(name, "STS52", vs);
		//Dock(hMMU, 0, 0, 1);
		SetMeshVisibilityMode(MAINMeshUINT, MESHVIS_NEVER);
		SetMeshVisibilityMode(ISSMeshUINT, MESHVIS_ALWAYS);
		oapiSetFocusObject(hMMU);
	//}
}

The only other way is to make the IRIS to be inverted. So main thrust would be in the -z axis rather than the +z
 
Last edited:
better but still issues.
poqKZ5W.jpg

GWdfYjB.jpg


So I have the main vessel and press a key. the IRIS is made with LAGEOS and rcs backward is fired. When it is made it is docked. BUt when I undock if moves a bit into the ISS and then moves away, BUT it redocks.

I may need to move the dock into the iss so it doesn't redock or make the dock go away?

Not sure if I can fix the moving into the ISS though?
IRIS dockinfo
Code:
BEGIN_DOCKLIST
0 0 0  0 0 -1  0 1 0    588
END_DOCKLIST
ISS dock info
Code:
SetDockParams(_V(0, 0, 0), _V(0, 0, 1), _V(0, 1, 0));


---------- Post added 10-08-19 at 04:33 AM ---------- Previous post was 10-07-19 at 06:02 AM ----------

So I get these now:
p2QYZBm.jpg

w2AaXo7.jpg

UqzWn4c.jpg

PH2ZQeD.jpg

FO9PtUR.jpg


Really the only issue. IS when the IRIS and LAgeos are made they are not inverted as they need to be. So I have them created far off and then docked. So a slight delay.
 
Last edited:
Thanks. Working on a 2010 version and noticed something.
6RZkPNh.jpg


shuttle on the left is 2010, right 2016.
See on the left how far the ase is. It fits between the 2 arm supports.
I had to move forward the ase in 2016 so it would not hit the rms support.

So are the rms supports too close or what?

So here is the setup from the press kit
haDImF0.jpg


You can see the ase sits just in front of the rear support and the next one is in the ase outline. I suppose as long as the arm is active and the doors are open no issues
 
Last edited:
Looking good! I imagine the 2010 version would be easier to put together following the template already in place with the payloads addon.
 
So I moved the ase back. But need to redo the doors as the arm support hits it.
8TAPUaF.jpg


another I noticed. In the rear wall is an U.S. flag. it is on the right but in the original the flag is on the left side

getting 201 to work
0v5yk7s.jpg
 
So here is st52 for 2010 shuttle fleet. It is only an orbit scn. So focus on sts52 press CTRL F6 to start the sat spinning. When the spin rate gets to 50 then CTRL 6 releases the ship.

ISSIRIS keys: G stops/starts the rotation K separates the vessels and docks the IRIS to the ISS and creates the Lageos. So you will need to then undock and fly the IRIS. Press K to release the Lageos

Hopefully all is there:
https://drive.google.com/open?id=19LI17GdP4ESU_wzMDoTdSL54amsoOhx_

o209TMY.jpg
 
Last edited:
The ISSIRIS/Lageos mesh does not show up, it’s just an invisible vessel attached to the ASE. There are also no files for the CTA. Aside from that, the ASE itself is beautiful: I wasn’t sure what you meant earlier by more detail but now I get it! The other payloads (especially USMP) also turned out great!
 
Sure can:

Code:
**** Orbiter.log
Build Aug 30 2010 [v.100830]
Timer precision: 6.98413e-008 sec
Found 0 joystick(s)
Devices enumerated: 2
Devices accepted: 2
==> RGB Emulation
==> Direct3D HAL
Module AtlantisConfig.dll .... [Build 100830, API 100830]
Module AtmConfig.dll ......... [Build 100830, API 100830]
Module DGConfigurator.dll .... [Build 100830, API 100830]
Module ScnEditor.dll ......... [Build 100830, API 100830]
Module Rcontrol.dll .......... [Build 100830, API 100830]
Module ExtMFD.dll ............ [Build 100830, API 100830]
Module Meshdebug.dll ......... [Build 100830, API 100830]
Module AutoFCS.dll ........... [Build ******, API 050206]
Module GPCMFD.dll ............ [Build 131213, API 100830]
Module ScreenCapture.dll ..... [Build ******, API 060425]
Module CustomMFD.dll ......... [Build 100830, API 100830]
Module AttitudeMFD.dll ....... [Build ******, API 060425]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: oapiRegisterMFDMode
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
Module ORBTGT.dll ............ [Build 140124, API 100830]
Module RPOP.dll .............. [Build 131222, API 100830]
Module STSGuidanceMFD.dll .... [Build 120225, API 100830]
Error loading module Modules\Plugin\ApolloRTCCMFD.dll (code 126)
Error loading module Modules\Plugin\ProjectApolloMFD.dll (code 126)
Module SextantMFD.dll ........ [Build ******, API 060425]
Module Multistage2015_MFD.dll  [Build 170625, API 100830]

**** Creating simulation session
DirectDraw interface OK
Direct3D interface OK
Graphics: Viewport: Window 1434 x 874 x 32
Graphics: Hardware T&L capability: No
Graphics: Z-buffer depth: 32 bit
Graphics: Active lights supported: -1
Loading 15382 records from star database
Module Sun.dll ............... [Build 100830, API 100830]
VSOP87(E) Sun: Precision 1e-006, Terms 554/6634
Module Mercury.dll ........... [Build 100830, API 100830]
VSOP87(B) Mercury: Precision 1e-005, Terms 167/7123
Module Venus.dll ............. [Build 100830, API 100830]
Module VenusAtm2006.dll ...... [Build 100830, API 100830]
VSOP87(B) Venus: Precision 1e-005, Terms 79/1710
Module Earth.dll ............. [Build 100830, API 100830]
Module EarthAtmJ71G.dll ...... [Build 100830, API 100830]
VSOP87(B) Earth: Precision 1e-008, Terms 2564/2564
Module Moon.dll .............. [Build 100830, API 100830]
ELP82: Precision 1e-005, Terms 116/829
Module Mars.dll .............. [Build 100830, API 100830]
Module MarsAtm2006.dll ....... [Build 100830, API 100830]
VSOP87(B) Mars: Precision 1e-005, Terms 405/6400
Module Phobos.dll ............ [Build ******, API 060425]
Module Deimos.dll ............ [Build ******, API 060425]
Module Galsat.dll ............ [Build 100217, API 100215]
Module Jupiter.dll ........... [Build 100830, API 100830]
VSOP87(B) Jupiter: Precision 1e-006, Terms 1624/3625
Module Io.dll ................ [Build 100217, API 100215]
Module Europa.dll ............ [Build 100217, API 100215]
Module Ganymede.dll .......... [Build 100217, API 100215]
Module Callisto.dll .......... [Build 100217, API 100215]
Module Satsat.dll ............ [Build 100215, API 100212]
Module Saturn.dll ............ [Build 100830, API 100830]
VSOP87(B) Saturn: Precision 1e-006, Terms 2904/6365
Module Mimas.dll ............. [Build 100215, API 100212]
SATSAT Mimas: Terms 113
Module Enceladus.dll ......... [Build 100215, API 100212]
SATSAT Enceladus: Terms 33
Module Tethys.dll ............ [Build 100215, API 100212]
SATSAT Tethys: Terms 101
Module Dione.dll ............. [Build 100215, API 100212]
SATSAT Dione: Terms 59
Module Rhea.dll .............. [Build 100215, API 100212]
SATSAT Rhea: Terms 68
Module Titan.dll ............. [Build 100215, API 100212]
SATSAT Titan: Terms 100
Module Iapetus.dll ........... [Build 100215, API 100212]
SATSAT Iapetus: Terms 605
Module Uranus.dll ............ [Build 100830, API 100830]
VSOP87(B) Uranus: Precision 1e-006, Terms 1827/5269
Module Miranda.dll ........... [Build ******, API 060425]
Module Ariel.dll ............. [Build ******, API 060425]
Module Umbriel.dll ........... [Build ******, API 060425]
Module Titania.dll ........... [Build ******, API 060425]
Module Oberon.dll ............ [Build ******, API 060425]
Module Neptune.dll ........... [Build 100830, API 100830]
VSOP87(B) Neptune: Precision 1e-006, Terms 391/2024
Finished initialising world
Module Shuttle.dll ........... [Build 140123, API 100830]
Module Spacecraft3.dll ....... [Build ******, API 050206]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/goldwhite.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/c-white.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Could not load vessel module: ISSIRISNEW
>>> [Vessel::LoadModule | .\Vessel.cpp | 5442]
---------------------------------------------------------------
Module PBLights.dll .......... [Build 111222, API 100830]
Finished initialising status
Finished initialising camera
Finished initialising panels
Finished setting up render state
**** WARNING: Mesh not found: .\Meshes\.msh
**** Respawning Orbiter process


**** Orbiter.log
Build Aug 30 2010 [v.100830]
Timer precision: 6.98413e-008 sec
Found 0 joystick(s)
Devices enumerated: 2
Devices accepted: 2
==> RGB Emulation
==> Direct3D HAL
Module AtlantisConfig.dll .... [Build 100830, API 100830]
Module AtmConfig.dll ......... [Build 100830, API 100830]
Module DGConfigurator.dll .... [Build 100830, API 100830]
Module ScnEditor.dll ......... [Build 100830, API 100830]
Module Rcontrol.dll .......... [Build 100830, API 100830]
Module ExtMFD.dll ............ [Build 100830, API 100830]
Module Meshdebug.dll ......... [Build 100830, API 100830]
Module AutoFCS.dll ........... [Build ******, API 050206]
Module GPCMFD.dll ............ [Build 131213, API 100830]
Module ScreenCapture.dll ..... [Build ******, API 060425]
Module CustomMFD.dll ......... [Build 100830, API 100830]
Module AttitudeMFD.dll ....... [Build ******, API 060425]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: oapiRegisterMFDMode
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
Module ORBTGT.dll ............ [Build 140124, API 100830]
Module RPOP.dll .............. [Build 131222, API 100830]
Module STSGuidanceMFD.dll .... [Build 120225, API 100830]
Error loading module Modules\Plugin\ApolloRTCCMFD.dll (code 126)
Error loading module Modules\Plugin\ProjectApolloMFD.dll (code 126)
Module SextantMFD.dll ........ [Build ******, API 060425]
Module Multistage2015_MFD.dll  [Build 170625, API 100830]

**** Creating simulation session
DirectDraw interface OK
Direct3D interface OK
Graphics: Viewport: Window 1434 x 874 x 32
Graphics: Hardware T&L capability: No
Graphics: Z-buffer depth: 32 bit
Graphics: Active lights supported: -1
Loading 15382 records from star database
Module Sun.dll ............... [Build 100830, API 100830]
VSOP87(E) Sun: Precision 1e-006, Terms 554/6634
Module Mercury.dll ........... [Build 100830, API 100830]
VSOP87(B) Mercury: Precision 1e-005, Terms 167/7123
Module Venus.dll ............. [Build 100830, API 100830]
Module VenusAtm2006.dll ...... [Build 100830, API 100830]
VSOP87(B) Venus: Precision 1e-005, Terms 79/1710
Module Earth.dll ............. [Build 100830, API 100830]
Module EarthAtmJ71G.dll ...... [Build 100830, API 100830]
VSOP87(B) Earth: Precision 1e-008, Terms 2564/2564
Module Moon.dll .............. [Build 100830, API 100830]
ELP82: Precision 1e-005, Terms 116/829
Module Mars.dll .............. [Build 100830, API 100830]
Module MarsAtm2006.dll ....... [Build 100830, API 100830]
VSOP87(B) Mars: Precision 1e-005, Terms 405/6400
Module Phobos.dll ............ [Build ******, API 060425]
Module Deimos.dll ............ [Build ******, API 060425]
Module Galsat.dll ............ [Build 100217, API 100215]
Module Jupiter.dll ........... [Build 100830, API 100830]
VSOP87(B) Jupiter: Precision 1e-006, Terms 1624/3625
Module Io.dll ................ [Build 100217, API 100215]
Module Europa.dll ............ [Build 100217, API 100215]
Module Ganymede.dll .......... [Build 100217, API 100215]
Module Callisto.dll .......... [Build 100217, API 100215]
Module Satsat.dll ............ [Build 100215, API 100212]
Module Saturn.dll ............ [Build 100830, API 100830]
VSOP87(B) Saturn: Precision 1e-006, Terms 2904/6365
Module Mimas.dll ............. [Build 100215, API 100212]
SATSAT Mimas: Terms 113
Module Enceladus.dll ......... [Build 100215, API 100212]
SATSAT Enceladus: Terms 33
Module Tethys.dll ............ [Build 100215, API 100212]
SATSAT Tethys: Terms 101
Module Dione.dll ............. [Build 100215, API 100212]
SATSAT Dione: Terms 59
Module Rhea.dll .............. [Build 100215, API 100212]
SATSAT Rhea: Terms 68
Module Titan.dll ............. [Build 100215, API 100212]
SATSAT Titan: Terms 100
Module Iapetus.dll ........... [Build 100215, API 100212]
SATSAT Iapetus: Terms 605
Module Uranus.dll ............ [Build 100830, API 100830]
VSOP87(B) Uranus: Precision 1e-006, Terms 1827/5269
Module Miranda.dll ........... [Build ******, API 060425]
Module Ariel.dll ............. [Build ******, API 060425]
Module Umbriel.dll ........... [Build ******, API 060425]
Module Titania.dll ........... [Build ******, API 060425]
Module Oberon.dll ............ [Build ******, API 060425]
Module Neptune.dll ........... [Build 100830, API 100830]
VSOP87(B) Neptune: Precision 1e-006, Terms 391/2024
Finished initialising world
Module Shuttle.dll ........... [Build 140123, API 100830]
Module Spacecraft3.dll ....... [Build ******, API 050206]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/goldwhite.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/c-white.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Could not load vessel module: ISSIRISNEW
>>> [Vessel::LoadModule | .\Vessel.cpp | 5442]
---------------------------------------------------------------
Module PBLights.dll .......... [Build 111222, API 100830]
Finished initialising status
Finished initialising camera
Finished initialising panels
Finished setting up render state
**** WARNING: Mesh not found: .\Meshes\.msh
**** Respawning Orbiter process


**** Orbiter.log
Build Aug 30 2010 [v.100830]
Timer precision: 6.98413e-008 sec
Found 0 joystick(s)
Devices enumerated: 2
Devices accepted: 2
==> RGB Emulation
==> Direct3D HAL
Module AtlantisConfig.dll .... [Build 100830, API 100830]
Module AtmConfig.dll ......... [Build 100830, API 100830]
Module DGConfigurator.dll .... [Build 100830, API 100830]
Module ScnEditor.dll ......... [Build 100830, API 100830]
Module Rcontrol.dll .......... [Build 100830, API 100830]
Module ExtMFD.dll ............ [Build 100830, API 100830]
Module Meshdebug.dll ......... [Build 100830, API 100830]
Module AutoFCS.dll ........... [Build ******, API 050206]
Module GPCMFD.dll ............ [Build 131213, API 100830]
Module ScreenCapture.dll ..... [Build ******, API 060425]
Module CustomMFD.dll ......... [Build 100830, API 100830]
Module AttitudeMFD.dll ....... [Build ******, API 060425]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: oapiRegisterMFDMode
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
Module ORBTGT.dll ............ [Build 140124, API 100830]
Module RPOP.dll .............. [Build 131222, API 100830]
Module STSGuidanceMFD.dll .... [Build 120225, API 100830]
Error loading module Modules\Plugin\ApolloRTCCMFD.dll (code 126)
Error loading module Modules\Plugin\ProjectApolloMFD.dll (code 126)
Module SextantMFD.dll ........ [Build ******, API 060425]
Module Multistage2015_MFD.dll  [Build 170625, API 100830]

**** Creating simulation session
DirectDraw interface OK
Direct3D interface OK
Graphics: Viewport: Window 1434 x 874 x 32
Graphics: Hardware T&L capability: No
Graphics: Z-buffer depth: 32 bit
Graphics: Active lights supported: -1
Loading 15382 records from star database
Module Sun.dll ............... [Build 100830, API 100830]
VSOP87(E) Sun: Precision 1e-006, Terms 554/6634
Module Mercury.dll ........... [Build 100830, API 100830]
VSOP87(B) Mercury: Precision 1e-005, Terms 167/7123
Module Venus.dll ............. [Build 100830, API 100830]
Module VenusAtm2006.dll ...... [Build 100830, API 100830]
VSOP87(B) Venus: Precision 1e-005, Terms 79/1710
Module Earth.dll ............. [Build 100830, API 100830]
Module EarthAtmJ71G.dll ...... [Build 100830, API 100830]
VSOP87(B) Earth: Precision 1e-008, Terms 2564/2564
Module Moon.dll .............. [Build 100830, API 100830]
ELP82: Precision 1e-005, Terms 116/829
Module Mars.dll .............. [Build 100830, API 100830]
Module MarsAtm2006.dll ....... [Build 100830, API 100830]
VSOP87(B) Mars: Precision 1e-005, Terms 405/6400
Module Phobos.dll ............ [Build ******, API 060425]
Module Deimos.dll ............ [Build ******, API 060425]
Module Galsat.dll ............ [Build 100217, API 100215]
Module Jupiter.dll ........... [Build 100830, API 100830]
VSOP87(B) Jupiter: Precision 1e-006, Terms 1624/3625
Module Io.dll ................ [Build 100217, API 100215]
Module Europa.dll ............ [Build 100217, API 100215]
Module Ganymede.dll .......... [Build 100217, API 100215]
Module Callisto.dll .......... [Build 100217, API 100215]
Module Satsat.dll ............ [Build 100215, API 100212]
Module Saturn.dll ............ [Build 100830, API 100830]
VSOP87(B) Saturn: Precision 1e-006, Terms 2904/6365
Module Mimas.dll ............. [Build 100215, API 100212]
SATSAT Mimas: Terms 113
Module Enceladus.dll ......... [Build 100215, API 100212]
SATSAT Enceladus: Terms 33
Module Tethys.dll ............ [Build 100215, API 100212]
SATSAT Tethys: Terms 101
Module Dione.dll ............. [Build 100215, API 100212]
SATSAT Dione: Terms 59
Module Rhea.dll .............. [Build 100215, API 100212]
SATSAT Rhea: Terms 68
Module Titan.dll ............. [Build 100215, API 100212]
SATSAT Titan: Terms 100
Module Iapetus.dll ........... [Build 100215, API 100212]
SATSAT Iapetus: Terms 605
Module Uranus.dll ............ [Build 100830, API 100830]
VSOP87(B) Uranus: Precision 1e-006, Terms 1827/5269
Module Miranda.dll ........... [Build ******, API 060425]
Module Ariel.dll ............. [Build ******, API 060425]
Module Umbriel.dll ........... [Build ******, API 060425]
Module Titania.dll ........... [Build ******, API 060425]
Module Oberon.dll ............ [Build ******, API 060425]
Module Neptune.dll ........... [Build 100830, API 100830]
VSOP87(B) Neptune: Precision 1e-006, Terms 391/2024
Finished initialising world
Module Shuttle.dll ........... [Build 140123, API 100830]
Module Spacecraft3.dll ....... [Build ******, API 050206]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/goldwhite.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/c-white.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Could not load vessel module: ISSIRISNEW
>>> [Vessel::LoadModule | .\Vessel.cpp | 5442]
---------------------------------------------------------------
Module PBLights.dll .......... [Build 111222, API 100830]
Finished initialising status
Finished initialising camera
Finished initialising panels
Finished setting up render state
**** WARNING: Mesh not found: .\Meshes\.msh
**** Respawning Orbiter process


**** Orbiter.log
Build Aug 30 2010 [v.100830]
Timer precision: 6.98413e-008 sec
Found 0 joystick(s)
Devices enumerated: 2
Devices accepted: 2
==> RGB Emulation
==> Direct3D HAL
Module AtlantisConfig.dll .... [Build 100830, API 100830]
Module AtmConfig.dll ......... [Build 100830, API 100830]
Module DGConfigurator.dll .... [Build 100830, API 100830]
Module ScnEditor.dll ......... [Build 100830, API 100830]
Module Rcontrol.dll .......... [Build 100830, API 100830]
Module ExtMFD.dll ............ [Build 100830, API 100830]
Module Meshdebug.dll ......... [Build 100830, API 100830]
Module AutoFCS.dll ........... [Build ******, API 050206]
Module GPCMFD.dll ............ [Build 131213, API 100830]
Module ScreenCapture.dll ..... [Build ******, API 060425]
Module CustomMFD.dll ......... [Build 100830, API 100830]
Module AttitudeMFD.dll ....... [Build ******, API 060425]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: oapiRegisterMFDMode
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
Module ORBTGT.dll ............ [Build 140124, API 100830]
Module RPOP.dll .............. [Build 131222, API 100830]
Module STSGuidanceMFD.dll .... [Build 120225, API 100830]
Error loading module Modules\Plugin\ApolloRTCCMFD.dll (code 126)
Error loading module Modules\Plugin\ProjectApolloMFD.dll (code 126)
Module SextantMFD.dll ........ [Build ******, API 060425]
Module Multistage2015_MFD.dll  [Build 170625, API 100830]

**** Creating simulation session
DirectDraw interface OK
Direct3D interface OK
Graphics: Viewport: Window 1434 x 874 x 32
Graphics: Hardware T&L capability: No
Graphics: Z-buffer depth: 32 bit
Graphics: Active lights supported: -1
Loading 15382 records from star database
Module Sun.dll ............... [Build 100830, API 100830]
VSOP87(E) Sun: Precision 1e-006, Terms 554/6634
Module Mercury.dll ........... [Build 100830, API 100830]
VSOP87(B) Mercury: Precision 1e-005, Terms 167/7123
Module Venus.dll ............. [Build 100830, API 100830]
Module VenusAtm2006.dll ...... [Build 100830, API 100830]
VSOP87(B) Venus: Precision 1e-005, Terms 79/1710
Module Earth.dll ............. [Build 100830, API 100830]
Module EarthAtmJ71G.dll ...... [Build 100830, API 100830]
VSOP87(B) Earth: Precision 1e-008, Terms 2564/2564
Module Moon.dll .............. [Build 100830, API 100830]
ELP82: Precision 1e-005, Terms 116/829
Module Mars.dll .............. [Build 100830, API 100830]
Module MarsAtm2006.dll ....... [Build 100830, API 100830]
VSOP87(B) Mars: Precision 1e-005, Terms 405/6400
Module Phobos.dll ............ [Build ******, API 060425]
Module Deimos.dll ............ [Build ******, API 060425]
Module Galsat.dll ............ [Build 100217, API 100215]
Module Jupiter.dll ........... [Build 100830, API 100830]
VSOP87(B) Jupiter: Precision 1e-006, Terms 1624/3625
Module Io.dll ................ [Build 100217, API 100215]
Module Europa.dll ............ [Build 100217, API 100215]
Module Ganymede.dll .......... [Build 100217, API 100215]
Module Callisto.dll .......... [Build 100217, API 100215]
Module Satsat.dll ............ [Build 100215, API 100212]
Module Saturn.dll ............ [Build 100830, API 100830]
VSOP87(B) Saturn: Precision 1e-006, Terms 2904/6365
Module Mimas.dll ............. [Build 100215, API 100212]
SATSAT Mimas: Terms 113
Module Enceladus.dll ......... [Build 100215, API 100212]
SATSAT Enceladus: Terms 33
Module Tethys.dll ............ [Build 100215, API 100212]
SATSAT Tethys: Terms 101
Module Dione.dll ............. [Build 100215, API 100212]
SATSAT Dione: Terms 59
Module Rhea.dll .............. [Build 100215, API 100212]
SATSAT Rhea: Terms 68
Module Titan.dll ............. [Build 100215, API 100212]
SATSAT Titan: Terms 100
Module Iapetus.dll ........... [Build 100215, API 100212]
SATSAT Iapetus: Terms 605
Module Uranus.dll ............ [Build 100830, API 100830]
VSOP87(B) Uranus: Precision 1e-006, Terms 1827/5269
Module Miranda.dll ........... [Build ******, API 060425]
Module Ariel.dll ............. [Build ******, API 060425]
Module Umbriel.dll ........... [Build ******, API 060425]
Module Titania.dll ........... [Build ******, API 060425]
Module Oberon.dll ............ [Build ******, API 060425]
Module Neptune.dll ........... [Build 100830, API 100830]
VSOP87(B) Neptune: Precision 1e-006, Terms 391/2024
Finished initialising world
Module Shuttle.dll ........... [Build 140123, API 100830]
Module Spacecraft3.dll ....... [Build ******, API 050206]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: VESSEL::SetBankMomentScale
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/goldwhite.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Missing texture: STS_PAYLOADSNEW/c-white.dds
>>> [TextureManager::AcquireTexture | .\Texture.cpp | 750]
---------------------------------------------------------------
---------------------------------------------------------------
>>> ERROR: Could not load vessel module: ISSIRISNEW
>>> [Vessel::LoadModule | .\Vessel.cpp | 5442]
---------------------------------------------------------------
Module PBLights.dll .......... [Build 111222, API 100830]
Finished initialising status
Finished initialising camera
Finished initialising panels
Finished setting up render state
**** WARNING: Mesh not found: .\Meshes\.msh
**** Respawning Orbiter process


**** Orbiter.log
Build Aug 30 2010 [v.100830]
Timer precision: 6.98413e-008 sec
Found 0 joystick(s)
Devices enumerated: 2
Devices accepted: 2
==> RGB Emulation
==> Direct3D HAL
Module AtlantisConfig.dll .... [Build 100830, API 100830]
Module AtmConfig.dll ......... [Build 100830, API 100830]
Module DGConfigurator.dll .... [Build 100830, API 100830]
Module ScnEditor.dll ......... [Build 100830, API 100830]
Module Rcontrol.dll .......... [Build 100830, API 100830]
Module ExtMFD.dll ............ [Build 100830, API 100830]
Module Meshdebug.dll ......... [Build 100830, API 100830]
Module AutoFCS.dll ........... [Build ******, API 050206]
Module GPCMFD.dll ............ [Build 131213, API 100830]
Module ScreenCapture.dll ..... [Build ******, API 060425]
Module CustomMFD.dll ......... [Build 100830, API 100830]
Module AttitudeMFD.dll ....... [Build ******, API 060425]
---------------------------------------------------------------
>>> WARNING: Obsolete API function used: oapiRegisterMFDMode
At least one active module is accessing an obsolete interface function.
Addons which rely on obsolete functions may not be compatible with
future versions of Orbiter.
---------------------------------------------------------------
Module ORBTGT.dll ............ [Build 140124, API 100830]
Module RPOP.dll .............. [Build 131222, API 100830]
Module STSGuidanceMFD.dll .... [Build 120225, API 100830]
Error loading module Modules\Plugin\ApolloRTCCMFD.dll (code 126)
Error loading module Modules\Plugin\ProjectApolloMFD.dll (code 126)
Module SextantMFD.dll ........ [Build ******, API 060425]
Module Multistage2015_MFD.dll  [Build 170625, API 100830]
 
I get CTD, but I looked in scenario - why there is STS52:Shuttle, not, for example, "Shuttle2016B"?
Also seems, that PB_Lights are attached to STS-5 not STS-52... but still no success...
 
Last edited:
This is for 2010
new scn:
Code:
BEGIN_DESC
Contains the latest simulation state.
END_DESC

BEGIN_ENVIRONMENT
  System Sol
  Date MJD 48919.7219477030
  Help CurrentState_img
END_ENVIRONMENT

BEGIN_FOCUS
  Ship STS52ASE
END_FOCUS

BEGIN_CAMERA
  TARGET ISSIRIS
  MODE Extern
  POS 2.36 177.94 -4.19
  TRACKMODE TargetRelative
  FOV 28.18
END_CAMERA

BEGIN_HUD
  TYPE Surface
END_HUD

BEGIN_MFD Right
  TYPE Orbit
  PROJ Ship
  FRAME Equator
  ALT
  REF Earth
END_MFD

BEGIN_SHIPS
STS-52:Shuttle
  STATUS Orbiting Earth
  RPOS 2792584.06 2578642.11 -5488116.52
  RVEL 6208.584 -4482.029 1049.874
  AROT -164.87 -61.71 -147.77
  AFCMODE 7
  PRPLEVEL 0:0.997183
  NAVFREQ 0 0
  CONFIGURATION 3
  OV- 102
  MID102 
  RMSARM 
  CARGODOOR 1 1.0000
  KUBAND 1 1.0000
  POSTLAND 0 0.0000
  SSMES 0 0.0000
  ADTA 0 0.0000
  PETD 0 0.0000
  SETD 0 0.0000
  ARMTILT 1 1.0000 0 0.0000
  PRADIATOR 0 0.0000
  SRADIATOR 0 0.0000
  GEAR 0 0.0000
  PAYLOAD_MASS1 0.0000
  PAYLOAD_MASS2 0.0000
  PAYLOAD_MASS3 0.0000
  ARM_STATUS 0.5418 0.6265 0.8184 0.6198 0.5000 0.5000
  PL1_OFS 0.000000 -1.000000 -4.250000
  PL1_DIR 0.000000 1.000000 0.000000
  PL1_ROT 0.000000 0.000000 1.000000
  PL2_OFS 2.250000 1.000000 8.000000
  PL2_DIR 0.000000 -1.000000 0.000000
  PL2_ROT 0.000000 0.000000 1.000000
  PL3_OFS 0.000000 -0.000000 -1.500000
  PL3_DIR 0.000000 1.000000 0.000000
  PL3_ROT 0.000000 0.000000 1.000000
  PL4_OFS 0.000000 0.750000 -6.650000
  PL4_DIR 0.000000 1.000000 0.000000
  PL4_ROT 0.000000 0.000000 1.000000
  PL5_OFS 0.000000 0.000000 0.500000
  PL5_DIR 0.000000 1.000000 0.000000
  PL5_ROT 0.000000 0.000000 1.000000
  PL6_OFS 0.000000 0.000000 -2.250000
  PL6_DIR 0.000000 1.000000 0.000000
  PL6_ROT 0.000000 0.000000 1.000000
  KEEL_CAM 0.145200 -1.500000 -1.356000
  CARGO_STATIC_MESH STS_PAYLOADSNEW\STS52STATIC
  CARGO_STATIC_OFS 0.000000 -0.500000 6.000000
  SPIN1 
END
STS52ASE:spacecraft\spacecraft3
  STATUS Orbiting Earth
  RPOS 2792580.19 2578643.14 -5488115.11
  RVEL 6208.584 -4482.029 1049.874
  AROT 134.17 14.64 65.52
  ATTACHED 0:4,STS-52
  AFCMODE 7
  NAVFREQ 0 0
  RCS 1
  CTRL_SURFACE 1
  CONFIGURATION 1
  CURRENT_PAYLOAD 0
  SEQ 0 2 0.998844
  SEQ 1 2 0.998844
END
USMP1:STS52MSP
  STATUS Orbiting Earth
  RPOS 2792582.86 2578641.95 -5488115.49
  RVEL 6208.584 -4482.029 1049.874
  AROT 15.13 61.71 -32.23
  ATTACHED 0:3,STS-52
  AFCMODE 7
  NAVFREQ 0 0
END
CTA:CTA
  STATUS Orbiting Earth
  RPOS 2792590.13 2578639.89 -5488121.71
  RVEL 6208.584 -4482.029 1049.874
  AROT -164.87 -61.71 -147.77
  ATTACHED 0:2,STS-52
  AFCMODE 7
END
ISSIRIS:ISSIRIS
  VEHICLESTATUS 0
  STATUS Orbiting Earth
  RPOS 2792580.44 2578642.29 -5488114.24
  RVEL 6208.584 -4482.029 1049.874
  AROT 134.17 14.64 65.52
  ATTACHED 0:0,STS-52
  AFCMODE 7
  PRPLEVEL 0:1.000000
  NAVFREQ 0 0
  XPDR 0
END
BayLights:PBLights
  STATUS Orbiting Earth
  RPOS 2929616.99 2674584.37 -5301475.03
  RVEL 5380.485 3204.704 4578.414
  AROT 30.94 11.12 72.67
  ATTACHED 0:15,STS-52
  AFCMODE 7
  NAVFREQ 0 0
  LIGHTS 0.10
END
END_SHIPS

BEGIN_ReFuelMFD
  SCENARIO_TREE 
    NAMED Computers
    END_NODE 
  END_NODE 
END

BEGIN_Attachment Manager
END

But try this for 2016:
https://drive.google.com/open?id=1qDHKl7mN-zCjA9hCr0xbgB-oH2SJDbwy
 
Everything appears now, but the stage seems under powered: max thrust is 267.3 and the apogee barely increases. The fuel mass is 8.85k. Could there be a decimal issue somewhere in the .dll?
 
Back
Top