CobaltWolf / Bluedog-Design-Bureau

Stockalike parts pack for Kerbal Space Program
https://forum.kerbalspaceprogram.com/index.php?/topic/122020-131mostly-functional-141-bluedog-design-bureau-stockalike-saturn-apollo-and-more-v142-%D0%B0%D1%82%D0%BB%D0%B0%D1%81-1feb2018/
126 stars 144 forks source link

New Experiments and science definitions #739

Closed zorg2044 closed 4 years ago

zorg2044 commented 5 years ago

A few additional experiments and associated science defintions are needed. Any help would be appreciated :)

Things to steal from Probes plus

zorg2044 commented 5 years ago

Scansat integration of KH10 and Corona will have to be dealt with separately.

CobaltWolf commented 5 years ago

The Ranger/Mariner TV experiment - right now there would be three tiers I believe, the Ranger Block 2 system, Ranger Block 3 system, and the one on Mariner 10 which is getting remade at some point this update.

Would be good to be able to separate the recon experiments by "mapping imagery" and "high resolution imagery"

Needs to be stolen from Probes+: Gamma Ray Spectrometry Infrared Spectrometry Ionization and Electrostatic Analysis Ultraviolet and Atmospheric Analysis

CobaltWolf commented 5 years ago

Would someone be interested in organizing this a bit more? Specifically I'd like a list of all the experiments, sorted by the experiment that they use; IE:

EXPERIMENT NAME Part name - tech node - xmitScalar or whatever other balance levers we have -notes Part name - tech node - xmitScalar or whatever other balance levers we have - notes

EXPERIMENT NAME etc...

Also, I'd like to try and convert some of the new experiments to DMagicScienceAnimateGeneric. Even on parts without animations there's a ton of features it adds. I need to keep them in mind for the new experiments moving forward. https://github.com/DMagic1/DMModuleScienceAnimateGeneric/blob/master/reference.cfg

I ported a bunch of Coatl experiments last night but they need to have compatibility stuff written for them still.

SilveiraMarcel commented 5 years ago

Scansat integration of KH10 and Corona will have to be dealt with separately.

I can help with that. After Wednesday I will have some time so I can make and test a ScanSat compatibility patch

SilveiraMarcel commented 5 years ago

Never mind, I found the patch I made last year for Contares_SPY `//Patch made by Marcelo Silveira, Aug-10-2018

//C-CAM Type Argon @PART[C?CAM_2S]:NEEDS[HullCameraVDS]:AFTER[HullCameraVDS] { MODULE { name = SCANsat sensorType = 24 //2^3 + 2^4 fov = 2.2 min_alt = 5000 max_alt = 180000 best_alt = 120000 scanName = Multispectral RESOURCE { name = ElectricCharge rate = 0.128 } }

MODULE
{
    name        = SCANexperiment
    experimentType  = SCANsatBiomeAnomaly
}

}

//C-CAM Type Gambit @PART[C-CAM_1]:NEEDS[HullCameraVDS]:AFTER[HullCameraVDS] {

MODULE
{
    name        = SCANsat
    sensorType  = 24  //2^3 + 2^4
    fov     = 2.2
    min_alt     = 5000
    max_alt     = 180000
    best_alt        = 120000
    scanName    = Multispectral
    RESOURCE
    {
        name    = ElectricCharge
        rate    = 0.128
    }
}

MODULE
{
    name        = SCANexperiment
    experimentType  = SCANsatBiomeAnomaly
}

}

//Zenit Capsule @PART[ZENIT_1]:NEEDS[HullCameraVDS]:AFTER[HullCameraVDS] { MODULE { name = SCANsat sensorType = 24 //2^3 + 2^4 fov = 2.2 min_alt = 5000 max_alt = 180000 best_alt = 120000 scanName = Multispectral RESOURCE { name = ElectricCharge rate = 0.128 } }

MODULE
{
    name        = SCANexperiment
    experimentType  = SCANsatBiomeAnomaly
}

} //YNTR-T80 Telexcope @PART[YNTR?T80]:NEEDS[HullCameraVDS]:AFTER[HullCameraVDS] {

MODULE
{
    name        = SCANsat
    sensorType  = 24  //2^3 + 2^4
    fov     = 2.2
    min_alt     = 5000
    max_alt     = 280000
    best_alt        = 120000
    scanName    = Multispectral
    RESOURCE
    {
        name    = ElectricCharge
        rate    = 0.36
    }
}

MODULE
{
    name        = SCANexperiment
    experimentType  = SCANsatBiomeAnomaly
}

} `