Advertisement
Guest User

RealScience complex experiment test

a guest
Apr 25th, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. +PART[asasmodule1-2]:FIRST
  2. {
  3. %RSSROConfig = true
  4. @name = RSBiosampleCore
  5. @category = Science
  6. %rescaleFactor = 0.12
  7. @node_stack_top = 0, 0.25, 0, 0.0, 1.0, 0.0, 0
  8. @node_stack_bottom = 0, -0.25, 0, 0.0, 1.0, 0.0, 0
  9. @mass = 0.06
  10. @maxTemp = 1000
  11. @crashTolerance = 7 // same as propulsion standard.
  12. @TechRequired = start
  13. @title = Biosample Experiment Core
  14. @manufacturer = RealScience
  15. @description = This provides the core monitoring and telemetry system for the Biosample experiment. You will need this plus an additional part that carries your test subject(s).
  16.  
  17. !MODULE[ModuleReactionWheel]
  18. {
  19. }
  20. RESOURCE
  21. {
  22. name = ElectricCharge
  23. amount = 180
  24. maxAmount = 180
  25. }
  26. // RealScience bisample test experiment
  27. // This is a purposefly complex experiment used to test the system
  28. MODULE
  29. {
  30. name = RealScienceExperiment
  31. experimentName = BioSample
  32. experimentTitle = Biosample Experiment
  33. description = This experiment is used to observe how various life forms react and handle space travel in varying conditions. Requires an additional part containing the test subject(s). The amount of science gained depends on what the subjects and where you take them. This is an ongoing experiment that continues to collect data at all times once the experiment is initially started.
  34. requiredData = 0
  35. maximumData = 100
  36. researchDataRate = 1
  37. analysisTime = 0
  38. scienceValue = 0
  39. scienceValuePerData = 0.5
  40. dataSize = 0
  41. dataPerPacket = 1
  42. canFailAtAnyTime = True
  43. transmitValue = 0.2
  44. // This condition group governs the possible test subjects and their G tolerances
  45. conditionGroup
  46. {
  47. groupType = or
  48. // The order here is important, since conditions are evaluated first to last
  49. condition
  50. {
  51. conditionType = GeeForce
  52. gMax = 12
  53. }
  54. condition
  55. {
  56. conditionType = Part
  57. maximumDataBonus = 40
  58. requiredPartName = RSMonkeyTestSubject
  59. }
  60. condition
  61. {
  62. conditionType = GeeForce
  63. gMax = 5
  64. }
  65. condition
  66. {
  67. conditionType = Part
  68. maximumDataBonus = 0
  69. requiredPartName = RSFrogsTestSubject
  70. }
  71. }
  72. // This group details the possible areas for testing our subjects in
  73. conditionGroup
  74. {
  75. groupType = or
  76. condition
  77. {
  78. conditionType = Orbit
  79. mainBody = kerbin
  80. apoapsisMin = 150000
  81. apoapsisMax = 5000000
  82. periapsisMin = 150000
  83. periapsisMax = 5000000
  84. }
  85. condition
  86. {
  87. conditionType = Orbit
  88. mainBody = mun
  89. maximumDataBonus = 3
  90. dataRateModifier = 3
  91. apoapsisMin = 20000
  92. apoapsisMax = 5000000
  93. periapsisMin = 20000
  94. periapsisMax = 5000000
  95. }
  96. }
  97. // lastly we use up some EC for the monitoring equipment
  98. conditionGroup
  99. {
  100. groupType = "and"
  101. condition
  102. {
  103. conditionType = Resource
  104. resourceName = ElectricCharge
  105. initialConsumption = 5
  106. usagePerSecond = 0.1
  107. validIfEmpty = false
  108. }
  109. }
  110. }
  111. }
  112. +PART[asasmodule1-2]:FIRST
  113. {
  114. %RSSROConfig = true
  115. @name = RSFrogsTestSubject
  116. @category = Science
  117. %rescaleFactor = 0.12
  118. @node_stack_top = 0, 0.25, 0, 0.0, 1.0, 0.0, 0
  119. @node_stack_bottom = 0, -0.25, 0, 0.0, 1.0, 0.0, 0
  120. @mass = 0.06
  121. @maxTemp = 1000
  122. @crashTolerance = 7 // same as propulsion standard.
  123. @TechRequired = start
  124. @title = Test Subject: Frogs
  125. @manufacturer = RealScience
  126. @description = Carries a few frogs for use in experiments
  127.  
  128. !MODULE[ModuleReactionWheel]
  129. {
  130. }
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement