SHIP REARM QUESTION
Moderators: wdolson, MOD_War-in-the-Pacific-Admirals-Edition
SHIP REARM QUESTION
Is there a formula/calculation to use to determine the amount of naval support required to rearm a certain weapon in a port?
Thanks
Thanks
PO2 US Navy (1980-1986);
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
RE: SHIP REARM QUESTION
I don't know the formula, but if you look to pag.284-287 of the game
manual you can easy found what you want (20.1.2.2 "Ship rearmament at
ports table").
manual you can easy found what you want (20.1.2.2 "Ship rearmament at
ports table").
RE: SHIP REARM QUESTION
There are a LOT of weapons however that are NOT on that list and I an trying to create my own repair/rearm spreadsheet for every weapon used so having a formula/calculation is important.
PO2 US Navy (1980-1986);
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
RE: SHIP REARM QUESTION
1. The formula data is provided in s.20.1.2.2 of the manual.
2. The rearming process is outlined in s.9.3.3.2 of the manual.
Alfred
2. The rearming process is outlined in s.9.3.3.2 of the manual.
Alfred
RE: SHIP REARM QUESTION
Well hopefully I'll get this done sometime ...ORIGINAL: dereck
There are a LOT of weapons however that are NOT on that list and I an trying to create my own repair/rearm spreadsheet for every weapon used so having a formula/calculation is important.
In the meantime if you need help with the calculations - PM me. Otherwise I got everything from the manual.

- Attachments
-
- Derek.jpg (216.11 KiB) Viewed 341 times
RE: SHIP REARM QUESTION
ORIGINAL: Alfred
1. The formula data is provided in s.20.1.2.2 of the manual.
That is the formula for the amount of SUPPLY. I'm looking to determine how much NAVAL SUPPORT is required.
2. The rearming process is outlined in s.9.3.3.2 of the manual.
Alfred
PO2 US Navy (1980-1986);
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
RE: SHIP REARM QUESTION
Its in the manual. You just need to search ... there's a table with port size and naval support ...
Pax
RE: SHIP REARM QUESTION
ORIGINAL: dereck
ORIGINAL: Alfred
1. The formula data is provided in s.20.1.2.2 of the manual.
That is the formula for the amount of SUPPLY. I'm looking to determine how much NAVAL SUPPORT is required.
2. The rearming process is outlined in s.9.3.3.2 of the manual.
Alfred
Do you seriously believe I would direct a poster to a specific section of the manual which does not provide the specific answer to the question posed?[:-]
Read again the sections I directed you to, the answer is there. If you need further assistance look at the table on page 211 of the manual although that only deals with the native capability of the port, a factor you did not specifically request info on in your OP.
Alfred
RE: SHIP REARM QUESTION
ORIGINAL: Alfred
ORIGINAL: dereck
ORIGINAL: Alfred
1. The formula data is provided in s.20.1.2.2 of the manual.
That is the formula for the amount of SUPPLY. I'm looking to determine how much NAVAL SUPPORT is required.
2. The rearming process is outlined in s.9.3.3.2 of the manual.
Alfred
Do you seriously believe I would direct a poster to a specific section of the manual which does not provide the specific answer to the question posed?[:-]
Read again the sections I directed you to, the answer is there. If you need further assistance look at the table on page 211 of the manual although that only deals with the native capability of the port, a factor you did not specifically request info on in your OP.
Alfred
The formula on page 285 specifically says SUPPLY and I keep saying I want to determine the amount of NAVAL SUPPORT required. The chart on page 211 just shows the Rearm Level but not how the Naval Support is determined when it is something like Port-4 + Naval Support.
PO2 US Navy (1980-1986);
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
RE: SHIP REARM QUESTION
ORIGINAL: PaxMondo
Its in the manual. You just need to search ... there's a table with port size and naval support ...
Where? I've looked and I can't find one that shows the Naval Support. I'm not talking about the charts on pages 285 thru 288 because that is what I'm trying to find a formula for (somehow) to calculate the NAVAL SUPPORT for on weapons that are not listed in that chart.
PO2 US Navy (1980-1986);
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
USS Midway CV-41 (1981-1984)
Whidbey Island, WA (1984-1986)
Naval Reserve (1986-1992)
RE: SHIP REARM QUESTION
PseudoCode enabled.
1. Work out the rearm cost for the device.
if deviceID = 195 then rearm = 500
if deviceID = 196 then rearm = 1500
if deviceType = DPGUN or NAVYGUN or FLAK then rearm device = Effectiveness() * 2;
if deviceType = ASW or TORPEDO ) then rearm = d.GetLoadCost();
2. Work out the PortNavalSupport for each level of PortSize
// basic Port rearm levels with no Naval Support
port_ReArmLevel[] = {0,15,25,40,110,300,700,5500,6000,6500,9999};
if(port_ReArmLevel[portsize] >= rearm cost) // so for each port rearm level checks rearm cost
then no naval support required.
else
if (portSize ==1)
NavalSupport = roundup((0.2*reArmCost)-3);
else if (portSize <= 10)
NavalSupport = roundup((0.2*reArmCost)-(port_ReArmLevel[portSize-1]/5));
Not great pseudo code - but I guess you can get the point. Also, this is not fully tested so if there are errors - not my fault...use at your own risk and if you find errors please give me feedback
Cheers
1. Work out the rearm cost for the device.
if deviceID = 195 then rearm = 500
if deviceID = 196 then rearm = 1500
if deviceType = DPGUN or NAVYGUN or FLAK then rearm device = Effectiveness() * 2;
if deviceType = ASW or TORPEDO ) then rearm = d.GetLoadCost();
2. Work out the PortNavalSupport for each level of PortSize
// basic Port rearm levels with no Naval Support
port_ReArmLevel[] = {0,15,25,40,110,300,700,5500,6000,6500,9999};
if(port_ReArmLevel[portsize] >= rearm cost) // so for each port rearm level checks rearm cost
then no naval support required.
else
if (portSize ==1)
NavalSupport = roundup((0.2*reArmCost)-3);
else if (portSize <= 10)
NavalSupport = roundup((0.2*reArmCost)-(port_ReArmLevel[portSize-1]/5));
Not great pseudo code - but I guess you can get the point. Also, this is not fully tested so if there are errors - not my fault...use at your own risk and if you find errors please give me feedback
Cheers
RE: SHIP REARM QUESTION
Well I had to work it out ... which can be done from the chart.ORIGINAL: dereck
ORIGINAL: PaxMondo
Its in the manual. You just need to search ... there's a table with port size and naval support ...
Where? I've looked and I can't find one that shows the Naval Support. I'm not talking about the charts on pages 285 thru 288 because that is what I'm trying to find a formula for (somehow) to calculate the NAVAL SUPPORT for on weapons that are not listed in that chart.

Which you can see I've done ...

- Attachments
-
- Derek.jpg (32.74 KiB) Viewed 341 times
RE: SHIP REARM QUESTION
ORIGINAL: dereck
ORIGINAL: Alfred
ORIGINAL: dereck
Do you seriously believe I would direct a poster to a specific section of the manual which does not provide the specific answer to the question posed?[:-]
Read again the sections I directed you to, the answer is there. If you need further assistance look at the table on page 211 of the manual although that only deals with the native capability of the port, a factor you did not specifically request info on in your OP.
Alfred
The formula on page 285 specifically says SUPPLY and I keep saying I want to determine the amount of NAVAL SUPPORT required. The chart on page 211 just shows the Rearm Level but not how the Naval Support is determined when it is something like Port-4 + Naval Support.
1. What part of the last sentence of the first paragraph on page 284 immediately under the section heading 20.1.2.2 is hard to understand and not directly on point?
2. Where does the word "supply" appear in the entire paragraph referred to in the precding point.
3. Where in my first point did I say only "forumula". Go back and read that post and you will see it says "formula data". That means the data for you to create your own formula.
4. What exactly do you think "Rearm Cost" means in the table listed on page 211?
You need all the info provided in the sections I directed you to, to understand the concept of rearming. Only after you understand the concept can you create the correct formula. Now go back and read the sections I have pointed you to where the answer is extremely easy to find.
Alfred
Edit: Don't forget to reread s.9.3.3.2 which I specifically mentioned in my first post. You will need that section to also understand fully the rearm concept which is not just about supply consumption.
- Bullwinkle58
- Posts: 11297
- Joined: Tue Feb 24, 2009 12:47 pm
RE: SHIP REARM QUESTION
Or just do what I do: drive up to a pretty big port in a pretty big ship and see if you get a pretty large amount of ammo. If not, drive on. [:D]
The Moose
RE: SHIP REARM QUESTION
ORIGINAL: dereck
ORIGINAL: PaxMondo
Its in the manual. You just need to search ... there's a table with port size and naval support ...
Where? I've looked and I can't find one that shows the Naval Support. I'm not talking about the charts on pages 285 thru 288 because that is what I'm trying to find a formula for (somehow) to calculate the NAVAL SUPPORT for on weapons that are not listed in that chart.
All you need to do is look it up in the table on page 285-288. So, for example, to rearm a 16in/50 Mk 7 (Rearm cost = 5400), at a level 6 port, you need 940 Naval Support.
If you really want a formula, try this:
[Naval Support Required] = ([Rearm Cost] - [Rearm Level of Port])/5
-- Mark Sieving
RE: SHIP REARM QUESTION
Wow - you just told me back my formula from an earlier post ... but with a margin of error. Don't you read other people's posts ? ... edit.. sorry im just in a foul mood today.ORIGINAL: msieving1
ORIGINAL: dereck
ORIGINAL: PaxMondo
Its in the manual. You just need to search ... there's a table with port size and naval support ...
Where? I've looked and I can't find one that shows the Naval Support. I'm not talking about the charts on pages 285 thru 288 because that is what I'm trying to find a formula for (somehow) to calculate the NAVAL SUPPORT for on weapons that are not listed in that chart.
All you need to do is look it up in the table on page 285-288. So, for example, to rearm a 16in/50 Mk 7 (Rearm cost = 5400), at a level 6 port, you need 940 Naval Support.
If you really want a formula, try this:
[Naval Support Required] = ([Rearm Cost] - [Rearm Level of Port])/5
-
- Posts: 7528
- Joined: Thu Jan 17, 2002 10:00 am
- Location: Cottesmore, Rutland
RE: SHIP REARM QUESTION
And/or stick a large AKE/AE in a port.
- Oliver Heindorf
- Posts: 1911
- Joined: Wed May 01, 2002 2:49 am
- Location: Hamburg/Deutschland
RE: SHIP REARM QUESTION
I go with what Moose said. Rest is far too complicated for me [:D]
- Bullwinkle58
- Posts: 11297
- Joined: Tue Feb 24, 2009 12:47 pm
RE: SHIP REARM QUESTION
ORIGINAL: Oliver Heindorf
I go with what Moose said. Rest is far too complicated for me [:D]
Hear, hear!![:)]
Been playing strat games since the 1960s. Some players always want to know in advance how every corner of the machine works. Fine, if one doesn't lose sight, in Heinlein's immortal words, of that fellow sneaking up to knife you while you fiddle with a rheostat.
The Moose
- Bullwinkle58
- Posts: 11297
- Joined: Tue Feb 24, 2009 12:47 pm
RE: SHIP REARM QUESTION
ORIGINAL: Chris H
And/or stick a large AKE/AE in a port.
Sticking AKEs is a big part of the game to be sure. [:'(]
The Moose