Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=3332551856
new startup procedure but appears to be working for the most part.
No drone or redfist version currently, will probably change that if the Barotrauma bug keeps biting.
Hey tell me how to do it, I'm learning to edit subs. Thank youy
"Heavily increased supercapacitor's power consumption **and made the recharge speed increase exponentially when the recharge rate is increased.**"
ACTUAL_CHARGE_RATE = SET_CHARGE_RATE^2 / 100
formula also applies to reading the current charge rate from the supercapacitor. The formula can simply be changed to:
ACTUAL_CHARGE_RATE = CURRENT_CHARGE_RATE^2 / 100
If you do not apply this formula to the output charge rate, the displays will be displaying the "skewed" charge rate of the supercapacitor instead of the "true" charge rate.
The core issue here is that setting the charge rate on supercapacitors via wiring no longer appears to work as it used to, in that sending "10" as the charge rate does not set the charge rate to 10%
Instead, the value you set now has a relationship with the actual charge rate described by the formula ACTUAL_CHARGE_RATE = SET_CHARGE_RATE^2 / 100. Due to this, when the automated system tries to set the charge rate to, say, 50%, the actual charge rate on the capacitor becomes 50^2 / 100 = 25%
The fix for this issue is to perform the inverse of the above formula when we're setting the charge rate; specifically, we need to do: CHARGE_TO_SET = SQRT(DESIRED_CHARGE_RATE * 100). This way, if we want to set the capacitor charge rate to 50%, the actual value to set will be SQRT(50 * 100) = SQRT(5000) = 70.7%
Additionally, as the charge rate can only be set in 10% increments, it can be helpful to put the output value through a ROUND or CEIL component
You should upload it and credit him. The workshop is full of copies and retrofits and fixes of subs that haven't been updated.
If he doesn't like it you can remove it afterwards, it has been over a year now
I'd be happy to send it to the original author to post, sorry to everyone that has to wait, i don't want credit for their hard work :)
I am glad to say I have very much enjoyed your sub for about as long as it has been out, thanks for the great build ^w^
The major problem I can see is whatever the hell they did with the charge rates of things (how the hell is 10% of 10 000 coming up as 100, yet 100% is coming up as 10 000?)
Whatever it is they did with the charge rates, its completely messed up the power system on the sub.
May need to do a complete rewire/redesign of the power systems.
In any case, it will require more time to fix than I have at the moment (hopefully they just fix that charge rate issue)
If I do get time, I will definitely try to fix it, I do like my U-Boat.