zer0Kerbal / CoyoteCargoFreighter

Coyote Cargo Freighter by Coyote Space Industries (CSI) is a massive parts pack for Kerbal Space Program.
https://forum.kerbalspaceprogram.com/index.php?/topic/209541-*/
GNU General Public License v2.0
1 stars 0 forks source link

CSIfreightersmallpowerreactor has FillAmount = 0.95 in file #29

Closed zer0Kerbal closed 1 year ago

zer0Kerbal commented 2 years ago

From CSI-Cargo-Freighter created by BararQ: dboi88/CSI-Cargo-Freighter#63

I had trouble trying to find out why when I launched I was at 100% and went down past 95% I could not top up completely with this reactor, but other reactors I could. It seems that it has FillAmount = 0.95 that prevents this, confirmed removal of this line allows 100% charge. Now I looked at the USI reactor files and they have this also. It might be that with it putting out 4500EC I didn't bother with any solar panels since most of my USI builds have solar panels before I can get a reactor on the ground. So it might be as intended and I never noticed untill I used your mod.

MODULE
{
    name = ModuleResourceConverter
    ConverterName = Reactor
    StartActionName = Start Reactor
    StopActionName = Stop Reactor
     FillAmount = 0.95      
    INPUT_RESOURCE
    {
        ResourceName = EnrichedUranium
        Ratio = 0.0000168
    }
    OUTPUT_RESOURCE
    {
        ResourceName = DepletedFuel
        Ratio = 0.0000112
        DumpExcess = true       
    }
    OUTPUT_RESOURCE
    {
        ResourceName = XenonGas
        Ratio = 0.0000054
        DumpExcess = true       
    }
    OUTPUT_RESOURCE
    {
        ResourceName = ElectricCharge
        Ratio = 4500
        DumpExcess = false      
    }
    AutoShutdown = true
    TemperatureModifier
    {
        key = 0 8000000
        key = 750 800000
        key = 1000 80000
        key = 1250 40000    
        key = 2000 80   
        key = 4000 0
    }               
    GeneratesHeat = true
    DefaultShutoffTemp = .8
    ThermalEfficiency 
    {
        key = 0 0 0 0
        key = 500 0.1 0 0
        key = 1000 1.0 0 0
        key = 1250 0.1 0 0
        key = 3000 0 0 0 
    }
}