Attention Adam, Rick, and anyone else with ShapeSheet skills.
This should be fun. OK, how do I start? Not really sure this is the most appropriate place to post this, but here goes...
I'd like to suggest an improvement of the
Rack shape in the
Equipment Racks stencil. Unless I am on crack, the rack spacing has been "off" slightly from day one. The connection point spacing appears to begin at the bottom of the shape with a connection point every 1.75" until you get to the top of the rack. The problem is the last connection point at the top of the rack leaves a rack space that is less than 1.75". Anyone else noticed this?
Now, let's look at the
ShapeSheet of the
Rack shape. I'm using a 19 space rack, so the formula my rack uses for connection points is
IF(User.NumCPs>=19,Connections.Y18+User.CP_Spacing ,User.CPHomeY) located in the
Connections.Y19 cell. Breaking down the
Precedents reveals the following:
Connections.Y18 =
31.5
User.CP_Spacing =
1.75
User.NumCPs =
20
User.CPHomeY =
0.0000 in
See anything wrong with these values? I do. The value shown for the first connection point is 0. The first connection point should begin at the first available rack space at the top of the rack (36.05" in my case) less the Top Plate (0" in my case). So let's do some formula tracing, shall we?
The formula for
User.CPHomeY is as follows:
Height*0+User.H_Grating
And the values of the Precedents are:
Height = 36.0500 in
User.H_Grating = 0.0000 in (height of my top plate)
Well, the
Height value is correct, but why is it being multiplied by zero and then added to the value of
User.H_Grating aka
Prop.TopHeight or "Top Piece Height?" Well, it shouldn't. Here's what I thought it should be:
Height-User.H_Grating
Well, it seems that I am wrong since it didn't work. I'm sure I'll have to open the group, but until I figure it out I suggest the
Rack shape be updated to act properly.