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

fixed procedural Ranger Block I Core power usage #626

Merged
merged 2 commits into from
Mar 26, 2017
Merged
Show file tree
Hide file tree
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
12 changes: 11 additions & 1 deletion GameData/RP-0/ProceduralAvionics.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,21 @@
name = basicScience
tonnageToMassRatio = 4.327
costPerControlledTon = 4425
enabledProceduralW = 116.66
enabledProceduralW = 166.66
disabledProceduralW = 2.666
standardAvionicsDensity = 0.416
SASServiceLevel = 1
}
TECHLIMIT # Ranger Block III Core
{
name = miniaturization
tonnageToMassRatio = 8
costPerControlledTon = 2550
enabledProceduralW = 133.33
disabledProceduralW = 2.5
standardAvionicsDensity = 0.28
SASServiceLevel = 1
}
}
}
}
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Let's take a look at a sample MM config for procedural avionics. I'll annotate
name = basicScience
tonnageToMassRatio = 4.327
costPerControlledTon = 4425
enabledProceduralW = 116.66
enabledProceduralW = 166.66
disabledProceduralW = 2.666
standardAvionicsDensity = 0.416
SASServiceLevel = 1
Expand All @@ -259,6 +259,8 @@ Let's take a look at a sample MM config for procedural avionics. I'll annotate
### Building your own TECHLIMIT nodes
I have created a spreadsheet [here](https://docs.google.com/spreadsheets/d/1lpuszH_nUbWlTXZzfOMzsy-uhUNh016eNu0WL8x6qvU/edit#gid=1101913381) that you can copy and use as a scratchpad to help you configure tech nodes. I'll give a manual walkthrough of what I would expect someone to do here, and I have created a few nodes at the top of the spreadsheet for some early existing parts.

Feel free to update the spreadsheet and create PRs to add new nodes. An example PR can be found [here](https://github.com/KSP-RO/RP-0/pull/626).

- Create a new line, copying the line above it to get all the formulas.
- Note: You should only need to edit the values in the blue columns.
- Take a look at the parts mass, cost, and controllable mass. Put those in columns and D, E, and F respectively.
Expand Down