hip

4
HIP This routine will calculate detailed information about a hip or valley, given: - Main Pitch - End Pitch - Span - Ridge Thickness - Rafter HAP (Height Above Plate; i.e. Heel Height of the Common Rafters) Items calculated by this routine are: - Hip length in FIS (Feet - Inches - Sixteenths) - Main Pitch-side Back Bevel for top of hip rip (in degrees) - End Pitch-side Back Bevel for top of hip rip (in degrees) - Hip Run in FIS - Hip HAP in FIS - Hip Pitch ( ___:17) - Hip Angle (in degrees) - Hip Exact (a second and different mathematical method is used to determine the Hip length as a check. Not sure why I did this, but I must have had a reason.) As with all of these routines, the user is “prompted” to enter the required numbers so that the calculation can be performed. 1 WALLMAXX, INC COPYRIGHT © 2012 ALL RIGHTS RESERVED

Upload: mike-m

Post on 28-Mar-2016

213 views

Category:

Documents


1 download

DESCRIPTION

How to program a scientific calculator for framing.

TRANSCRIPT

Page 1: HIP

HIP

This routine will calculate detailed information about a hip or valley, given:- Main Pitch- End Pitch- Span- Ridge Thickness- Rafter HAP (Height Above Plate; i.e. Heel Height of the Common Rafters)

Items calculated by this routine are:- Hip length in FIS (Feet - Inches - Sixteenths)- Main Pitch-side Back Bevel for top of hip rip (in degrees)- End Pitch-side Back Bevel for top of hip rip (in degrees)- Hip Run in FIS- Hip HAP in FIS- Hip Pitch ( ___:17)- Hip Angle (in degrees)- Hip Exact (a second and different mathematical method is used to determine the Hip length as a

check. Not sure why I did this, but I must have had a reason.)

As with all of these routines, the user is “prompted” to enter the required numbers so that the calculation can be performed.

1

WALLMAXX, INC COPYRIGHT © 2012 ALL RIGHTS RESERVED

Page 2: HIP

Here is what the actual routine looks like when keyed into the calculator.

2

WALLMAXX, INC COPYRIGHT © 2012 ALL RIGHTS RESERVED

Page 3: HIP

The keystrokes to enter/store, in an HP scientific calculator, in RPN mode are below:

<< “Main Pitch” “” INPUT OBJ 12 / ‘P’ STO “End Pitch” “” INPUT OBJ 12 / ‘Q’ STO“SPAN FIS” “” INPUT OBJ INSH ‘S’ STO “Ridge Thkn” “” INPUT OBJ 2 / ‘C’ STO“Rafter HAP INCH” “” INPUT OBJ ‘A’ STO

R P * ‘H’ STO H Q / ‘E’ STO R 2 ^ E 2 ^ + ‘B’ STO B H 2 ^ + √ FEET" ‘HIP’ TAGP ATAN SIN Q P / ATAN COS * ASIN " ‘MHIPRIP’ TAGQ ATAN SIN P Q / ATAN COS * ASIN " ‘EHIPRIP’ TAGR Q P / ATAN SIN / ‘I’ STO I FEET" ‘HIPRUN’ TAGA H .75 * R 2 ^ H 2 ^ + √ / - FEET" ‘HIPHAP’ TAGH B √ / 288 √ * " ‘PITCH17’ TAGH B √ / ATAN" ‘HIPANG’ TAGR P * ‘F’ STO F SQ I SQ + √ FEET " ‘HIPX’ TAG

CLEER >>

3

WALLMAXX, INC COPYRIGHT © 2012 ALL RIGHTS RESERVED

Page 4: HIP

A more complex hip-roof calculation is shown below.

4

WALLMAXX, INC COPYRIGHT © 2012 ALL RIGHTS RESERVED