You could make an extra parameter with the formula:
Wall_thickness = ( external_daimater - internal_diameter ) / 2 ul
Then the formula for the bottom parameter would be:
bottom = ( Wall_thickness - 2 mm - 3 mm ) % 5 mm + 3 mm
in my fast sketch that would look like this:

Of course, this could also be done in 1 formula in the bottom parameter. But would make it more difficult to understand the formula.
If you are wondering what % means in this formula have a look at "modulo operator". In short, it divides 2 numbers and gives as a result the remainder. As an example:
Wall_thickness = ( external_daimater - internal_diameter ) / 2 ul = 13
bottom = ( Wall_thickness - 2 mm - 3 mm ) % 5 mm + 3 mm
= ( 13 mm - 2 mm - 3 mm ) % 5 mm + 3 mm
= ( 8 mm ) % 5 mm + 3 mm
= 3 mm + 3 mm
= 6 mm
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

Blog: hjalte.nl - github.com