Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add full names and abbreviations to resources #2859

Merged
merged 2 commits into from
Aug 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -101,6 +105,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 @@ -111,6 +116,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 @@ -126,6 +132,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 @@ -142,7 +149,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 @@ -157,7 +165,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 @@ -172,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 = 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 @@ -188,7 +198,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 @@ -203,7 +214,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 @@ -216,7 +228,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 @@ -230,7 +243,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
Loading