Skip to content

Commit

Permalink
Add full names and abbreviations to resources (#2859)
Browse files Browse the repository at this point in the history
* Add full names and abbreviations to resources

Since you can apparently specify separate abbreviations and display names for resources, give our resources more verbose display names.

* Trim to fit in one line

Full names have been trimmed to ensure they fit on a single line, so as to avoid cluttering tank UI
  • Loading branch information
Capkirk123 authored Aug 14, 2023
1 parent a87b37a commit aec53c3
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions GameData/RealismOverhaul/RO_Resources.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ RESOURCE_DEFINITION
RESOURCE_DEFINITION
{
name = ANFA22
displayName = Aniline-Furfuryl 22%
abbreviation = ANFA22
density = 0.001042
unitCost = 0.0001 //placeholder
hsp = 2163 // specific heat capacity (kJ/tonne-K as units)
Expand All @@ -31,6 +33,8 @@ RESOURCE_DEFINITION
RESOURCE_DEFINITION
{
name = ANFA37
displayName = Aniline-Furfuryl 37%
abbreviation = ANFA37
density = 0.0010585
unitCost = 0.0001 //placeholder
hsp = 2150 // specific heat capacity (kJ/tonne-K as units)
Expand Down Expand Up @@ -117,6 +121,7 @@ RESOURCE_DEFINITION
// Create new Kerosenes, change old Kerosene to JP-4 or the like.
@RESOURCE_DEFINITION[Kerosene]:FOR[RealismOverhaul]
{
%abbreviation = Kerosene
//We're letting this represent commercial jet fuels (Jet-A, JP-4, JP-5, T-1, etc.).
//JP-4 specced between 0.751-0.802 @ 15 C. Assuming average of 0.777
//TS-1 is specced for a minimum of 0.775. Close enough?
Expand All @@ -127,6 +132,7 @@ RESOURCE_DEFINITION
{
name = RP-1
displayName = RP-1
abbreviation = RP-1
density = 0.000807 //specced between 0.799-0.815, assuming average 0.807
//source: https://ntrs.nasa.gov/citations/20040140275
unitCost = 0.0007160 //2.71/gallon, 1965$
Expand All @@ -142,6 +148,7 @@ RESOURCE_DEFINITION
{
name = RG-1
displayName = RG-1
abbreviation = RG-1
density = 0.000833 //specced between 0.830-0.836 @ 20 C, assuming average of 0.833
//source: https://ntrs.nasa.gov/citations/20040140275
unitCost = 0.0007160 //Probably about the same as RP-1
Expand All @@ -158,7 +165,8 @@ RESOURCE_DEFINITION
{
//Cooled to 0 C
name = CooledAerozine50
displayName = CooledA50
displayName = Subcooled Aerozine50
abbreviation = CooledA50
density = 0.000920 //from https://rocketprops.readthedocs.io/en/latest/_static/Aerojet_Propellant_Properties.pdf
unitCost = 0.002284
hsp = 2970.1 // specific heat capacity (kJ/tonne-K as units).
Expand All @@ -173,7 +181,8 @@ RESOURCE_DEFINITION
//Cooled to -7 C (Falcon 9)
//In a kerolox stage, the LOX will keep the kerosene cool, so we're not worrying about it heating up
name = CooledKerosene
displayName = CooledKero
displayName = Subcooled Kerosene
abbreviation = CooledKero
density = 0.000796
unitCost = 0.000145
hsp = 1882 // specific heat capacity (kJ/tonne-K as units).
Expand All @@ -188,7 +197,8 @@ RESOURCE_DEFINITION
//Cooled to -7 C (Falcon 9)
//In a kerolox stage, the LOX will keep the kerosene cool, so we're not worrying about it heating up
name = CooledRP-1
displayName = CooledRP-1
displayName = Subcooled RP-1
abbreviation = CooledRP-1
density = 0.000827 //According to https://kinetics.nist.gov/RealFuels/macccr/macccr2008/Bruno2.pdf
unitCost = 0.0007160 //2.71/gallon, 1965$
hsp = 1882 // specific heat capacity (kJ/tonne-K as units).
Expand All @@ -204,7 +214,8 @@ RESOURCE_DEFINITION
//In a kerolox stage, the LOX will keep the kerosene cool, so we're not worrying about it heating up
//RG-1, also known as naftil/napthelene
name = CooledRG-1
displayName = CooledRG-1
displayName = Subcooled RG-1
abbreviation = CooledRG-1
density = 0.000854 //According to https://kinetics.nist.gov/RealFuels/macccr/macccr2008/Bruno2.pdf
unitCost = 0.0007160 //2.71/gallon, 1965$
hsp = 1882 // specific heat capacity (kJ/tonne-K as units).
Expand All @@ -219,7 +230,8 @@ RESOURCE_DEFINITION
//Cooled to -7 C (Falcon 9)
//In a kerolox stage, the LOX will keep the kerosene cool, so we're not worrying about it heating up
name = CooledSyntin
displayName = CooledSyntin
displayName = Subcooled Syntin
abbreviation = CooledSyntin
density = 0.000872
unitCost = 0.01117
flowMode = STACK_PRIORITY_SEARCH
Expand All @@ -232,7 +244,8 @@ RESOURCE_DEFINITION
{
//Cooled to 0 C
name = CooledNTO
displayName = CooledNTO
displayName = Subcooled NTO
abbreviation = CooledNTO
density = 0.001505 //from https://rocketprops.readthedocs.io/en/latest/_static/Aerojet_Propellant_Properties.pdf
unitCost = 0.004172
hsp = 1521.6 // specific heat capacity (kJ/tonne-K as units).
Expand All @@ -246,7 +259,8 @@ RESOURCE_DEFINITION
{
//Cooled to 70 K (Falcon 9)
name = CooledLqdOxygen
displayName = CooledLOX
displayName = Subcooled LqdOxygen
abbreviation = CooledLOX
density = 0.001236
unitCost = 0.00002815
hsp = 918 // specific heat capacity (kJ/tonne-K as units) // recalc, mols are for O2 on wiki
Expand Down

0 comments on commit aec53c3

Please sign in to comment.