安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






https://psteamcommunity.yuanyoumao.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.