Just to back peddle a little bit and try to wrap this up...
Right, I think this is the only real point of disagreement now. The sentence in 310.15(B) doesn't really tell us what to do when "the corrected and adjusted ampacity does exceed the ampacity for the temperature rating of the termination in accordance with the provisions of 110.14(C)."
While I will agree that this is true - there are no explicit instructions describing this case.
However, as I've said before, when looking at conditional statements such as if statements, they work in a certain way.
For example (and pardon me for the crudeness of the following, it's been years...)
If ( A
CorrectedAndAdjustedFrom90*C<=A
60*C ) {
A
CorrectedAndAdjustedFrom90*C = A
Final, Less OCPD Selection }
}
Else {
...and to your point, this is what is explicitly lacking.
}
But the point I'm trying to make is, you can't just skip to the second line of code.
The if statement is a conditional statement which grants us permission to perform correction and adjustment from the 90*C column, the code just words it funny, IMO, with a weird, seemingly pointless comma in the middle of it all.
Note that we don't need that 310.15(B) language to have the permission to use the higher temperature rating of the conductor as the basis for ampacity correction and adjustment, as 110.14(C) already provided that permission. 310.15(B) is just reminding us of that.
Fair point that 110.14(C) has already granted us permission, but the way I understand how the code works, is that there are going to be conflicting sections and that in such a case, the most restrictive rule is king, in which case, the conditional if statement of 310.15(B) would supersede the permission granted by 110.14(C)
So when the corrected and adjusted ampacity does exceed the termination ampacity, we just use the lesser value, the termination ampacity. I.e. in your OP, the red boxes are not violations, they are just cases where the ampacity is limited by the termination to 30A. I agree this isn't spelled out, but it is how it is commonly understood...
Roger that. If you say this is how it is commonly understood to be, I will take that into consideration and I do appreciate the discussion we've had and your patience and communication. The overall discussion, especially regarding 110.14(C), was helpful.
I was really hoping someone would have found a way to explicitly explain this to me with the code, because unfortunately, as far as safety and liability are concerned, I need to have explicit reasoning for my decisions and I feel my interpretation of 310.15(B) can be defended explicitly, whereas the other interpretation cannot.
I would feel more comfortable deferring to correcting and adjusting from the 75*C column, given that the conductor is also listed as a 75*C conductor.
I will agree, that common sense wise, if the corrected and adjusted is not below the 60*C threshold, simply setting it at the 60*C threshold makes partial sense, because you're taking the allowable ampacity down even further than what derating from the 90*C column was able to achieve.
I still feel like this should be re-written if this is the case, because this is NOT how I understand if statements to work.