So I'm going to post the new improved engine and propeller section coding with some caveats:
The "convert" Nasal file that supports the engine start-up and supposedly also provides more realistic engine instrument gauge inputs was a bugger to adjust after making these changes. You could leave the "convert" nasal as stock, but it will continue to make the engines kinda weak. I also changed the RPM gauges to actually read the engines' crankshaft RPM, not the geared down propellers' RPM.
Depending on if Skyboat can use an XML editor like NotePad++ I can provide the relevant entries in the convert Nasal.
Or I could just a link to the entire model in my Mediafire account. Mediafire has been a bastidge lately about cleanly uploading big size files, kinda why I want to do this piecemeal. At any rate here's the engines' coding snippet, the usual warnings here do apply. Make a back up of your YASim .xml before embarking on changes, yada, yada..
Code: Select all
<!-- Engine left -->
<propeller x="6.052" y="3.523" z="-0.369"
mass="1184"
moment="45"
radius="1.82"
blades="3"
gear-ratio="0.479"
min-rpm="650"
max-rpm="1293"
course-stop="2.0"
fine-stop="0.5"
cruise-rpm="1101"
cruise-power="900"
cruise-speed="178"
cruise-alt="12700">
<actionpt x="6.552" y="3.523" z="-0.369"/>
<control-input control="ADVANCE" axis="/controls/engines/engine[0]/propeller-pitch"/>
<piston-engine eng-power="1200"
eng-rpm="2700"
displacement="1829"
bore="5.5"
stroke="5.5"
compression="6.7"
min-throttle="0.068"
supercharger="1"
turbo-mul="1.5"
wastegate-mp="42">
<control-input control="THROTTLE" axis="/controls/engines/engine[0]/throttle"/>
<control-input control="STARTER" axis="/controls/engines/engine[0]/starter"/>
<control-input control="MAGNETOS" axis="/controls/engines/engine[0]/magnetos"/>
<control-input control="MIXTURE" axis="/controls/engines/engine[0]/mixture"/>
</piston-engine>
</propeller>
<!-- Engine right -->
<propeller x="6.052" y="-3.523" z="-0.369"
mass="1184"
moment="45"
radius="1.82"
blades="3"
gear-ratio="0.479"
min-rpm="650"
max-rpm="1293"
course-stop="2.0"
fine-stop="0.5"
cruise-rpm="1101"
cruise-power="900"
cruise-speed="178"
cruise-alt="12700">
<actionpt x="6.552" y="-3.523" z="-0.369"/>
<control-input control="ADVANCE" axis="/controls/engines/engine[1]/propeller-pitch"/>
<piston-engine eng-power="1200"
eng-rpm="2700"
displacement="1829"
bore="5.5"
stroke="5.5"
compression="6.7"
min-throttle="0.068"
supercharger="1"
turbo-mul="1.5"
wastegate-mp="42">
<control-input control="THROTTLE" axis="/controls/engines/engine[1]/throttle"/>
<control-input control="STARTER" axis="/controls/engines/engine[1]/starter"/>
<control-input control="MAGNETOS" axis="/controls/engines/engine[1]/magnetos"/>
<control-input control="MIXTURE" axis="/controls/engines/engine[1]/mixture"/>
</piston-engine>
</propeller>
So, thoughts, feedback...?