Showing posts with label HVAC. Show all posts
Showing posts with label HVAC. Show all posts

Monday, January 17, 2022

Review: Calculated Industries 4090 Sheet Metal/HVAC Pro Review

Review:  Calculated Industries 4090 Sheet Metal/HVAC Pro Review 








Quick Facts


Model: 4090 Sheet Metal/HVAC Pro 

Company: Calculated Industries

Years: approx. 2004 - Present*

Memory Register:  1 independent memory, 3 general memory registers

Battery:  2 x LR44 batteries

Screen:  8 digits with alpha numeric prompts, 12 digit accuracy

Logic:  AOS (Algebraic), Chain 

Price:   retails about $89.95; iOS and Android app available for $29.99; used calculators can be found for less 

Web Page from Calculated Industries:  https://www.calculated.com/mobile/prd722/Sheet-Metal-HVAC-Pro.html


If you purchase it out of the box, either by repackage or retail, both an Armadillo Case and a hard slide cover come with the calculator.  In the box set has a full user's manual, which is really nice and gives an extensive amount of examples and details.  


History


The Sheet Metal/HVAC Pro was exclusive to the International Training Institute (ITI)(https://www.sheetmetal-iti.org/) until 2021, when Calculated Industries made the calculator available to the Public  (7 seconds into this video:  https://www.youtube.com/watch?v=wzmB8UAEjls).


I purchased a used Sheet Metal/HVAC Pro which is why you see the ITI logo in the pictures.  I am very confident both versions have the substantially the same amount of functions.  


Features


* Trigonometry and Right Triangles

* Square, Square Root, Cube, Cube Root

* Fan Laws

* Circle and Arc Calculations

* Column and Cone Calculations

* VP (velocity pressure)/FPM (feet per minute) conversions

* Offset calculations

* Stairs, Hip/Valleys, Jack

* And one of the best known features to come with Calculated Industries industry calculators:  feet-inch-fraction and meter-millimeter calculations. Fractions of inches can be set from 1/2" to 1/64".  I usually work with 1/16".  


I think this is the only calculator from Calculator Industries to have a exponent (10^xx) key (x 10^y), allow for numbers to be entered using scientific notation.  The maximum number is 9.999999 * 10^76.  


Trigonometry


The only angle unit the trigonometric functions work with is degrees.  Two unique features that come with the Sheet Metal/HVAC Pro are the ArcK constant and the Law of Cosines function.  


An ArcK constant, which is equal to π/180 ≈ 0.017453.  This constant is helpful for circle arc calculations.


The Law of Cosines function where given the lengths of three sides A, B, and C, calculate the angle measurements of each of the angle and the area of the triangle using Heron's formula.   This is one of my favorite features of the Sheet Metal/HVAC Pro, as going through the User Guide a lot of pipe work involves determining lengths and angles of triangles.  


There are four keys that deal with right triangles, the multi-purpose [ x (Run) ], [ y (Rise) ],  [ r (Diag) ], and [ θ (Pitch) ] keys.  Enter the given knowns and then just press the remaining keys to solve for the missing parameters.  


Fan Laws


The A and A new (which represent the CFM - cubic feet per minute), and the B and B new registers deal with the three fan laws.  The B and B new parameters change depending on which fan law is used.


Fan Law 1:  B and B new represent RPM (revolutions per minute)

Fan Law 2:  B and B new represent SP (static pressure)

Fan Law 3:  B and B new represent BHP (brake horsepower)


Stairs and Roofs


The Sheet Metal/HVAC Pro has the stair, hip valley, and jack rafter calculations, the same as the construction calculators Construction Pro 5 and the Construction Master Pro.   You can set the default riser height of the stairs, as well as calculate the number of required risers, stairs, the tread width, the stringer length.  The HVAC Pro also works with roofs:  rafter length, pitch, jack rafters including irregular jacks.  


Offset Calculations


The offset calculations on the Sheet Metal/HVAC Pro slightly differ from the offset calculations offered on the Pipe Trades Pro.  The offset deal with sheet metals, and the calculations included are:


*  centerline radius

*  wrapper length

*  throat and heel radius


Verdict


As always, Calculated Industries offers quality calculators that are specific to industrial needs and the Sheet Metal/HVAC Pro is no exception.  The key quality is great, the display has helpful prompts, and the Armadillo cases given solid protection.   I'm happy that this calculator is now available to the public.


Eddie 


All original content copyright, © 2011-2022.  Edward Shore.   Unauthorized use and/or unauthorized distribution for commercial purposes without express and written permission from the author is strictly prohibited.  This blog entry may be distributed for noncommercial purposes, provided that full credit is given to the author. 


Saturday, October 16, 2021

Swiss Micros DM41X: Applications

Swiss Micros DM41X: Applications





Swiss Micros DM41X Program:  Euclid Algorithm


Registers:

R01:  A

R02: B

R03:  C  (used)


Finds the GCD of A and B, where A and B are positive integers and A > B.


01 LBL^T EUCLID

02 ^T GCD A>B

03 AVIEW

04 PSE

05 ^T A?

06 PROMPT

07 STO 01

08 ^T B?

09 PROMPT

10 STO 02

11 LBL 00

12 RCL 01

13 ENTER

14 ENTER

15 RCL 02

16 /

17 LASTX

18 X<>Y

19 INT

20 *

21 - 

22 STO 03

23 X=0?

24 GTO 01

25 RCL 02

26 STO 01

27 X<>Y

28 STO 02

29 GTO 00

30 LBL 01

31 ^T GCD=

32 ARCL 02

33 AVIEW

34 END


Examples:


A = 100, B = 20, GCD = 20

A = 78, B =24, GCD = 6


Swiss Micros DM41X Program: Fan Laws 


The program will calculate RPM_new (Revolutions per Minute), SP_new (Static Pressure), and BHP_new (Brake Horsepower).  


Inputs:

CFM_old:  Cubic Feet of Minute - old

CFM_new:  Cubic Feet of Minute - new

RPM_old:  Revolutions per Minute - old

SP_old:  Static Pressure - old

BHP_old:  Brake Horsepower - old


Outputs:

RPM_new

SP_new

BHP_new


01 LBL^T FANLAWS

02 CLA

03 ^T CFM.OLD?

04 PROMPT

05 STO 01

06 ^T CFM.NEW?

07 PROMPT

08 STO 02

09 X<>Y

10 /

11 STO 04

12 STO 06

13 ST* 06

14 STO 08

15 ST* 08

16 ST* 08

17 ^T RPM.OLD?

18 PROMPT

19 STO 03

20 ST* 04

21 ^T SP.OLD

22 PROMPT

23 STO 05

24 ST* 06

25 ^T BHP.OLD?

26 PROMPT

27 STO 07

28 ST* 08

29 ^T RPM.NEW=

30 ARCL 04

31 AVIEW

32 STOP

33 ^T SP.NEW=

34 ARCL 06

35 AVIEW

36 STOP

37 ^T BHP.NEW=

38 ARCL 08

39 AVIEW

40 END


Variables:


R01 = CFM.OLD

R02 = CFM.NEW

R03 = RPM.OLD

R04 = RPM.NEW

R05 = SP.OLD

R06 = SP.NEW

R07 = BHP.OLD

R08 = BHP.NEW


The program uses a lot of storage arithmetic.  


Example


Inputs:

CFM.OLD:  1250 CFM

CFM.NEW: 1600 CFM

RPM.OLD:  840 RPM

SP.OLD: 4 in

BHP.OLD: 7 BHP


Results:

RPM.NEW: 1075.2 RPM

SP.NEW: 6.5536 in

BHP.OLD:  14.680064 BHP


Source:

Calculated Industries "Sheet Metal/HVAC Pro Calc User's Guide" 2021


Swiss Micros DM41X Program: Johnson-Nyquist Noise Analysis


Equations Used:


Power (in Watts):


P = kb * T * Δf


RMS Voltage (in Volts):


v_n = √(4 * R * kb * T * Δf) = √(4 * R * P)


Current (in Amps):


i_n = √((4 * T * kb * Δf / R) = v_n / R


Inputs:


T = temperature in Kelvin  (°C + 273.15)

Δf = bandwidth, difference of frequencies in Hz

R = resistance in ohms (Ω)


Constants:  Boltzmann's Constant

kb ≈ 1.380649 * 10^-23 J/K


Program:


01 LBL^T NOISE

02 ^T TEMP? <K>

03 PROMPT

04 ^T BANDWIDTH?

05 PROMPT

06 *

07 1.308649E-23

08 *

09 ^T POW=

10 ARCL X

11 AVIEW

12 STOP

13 ^T R?

14 PROMPT

15 *

16 LASTX

17 X<>Y

18 4

19 *

20 SQRT

21 ^T V=

22 ARCL X

23 AVIEW

24 STOP

25 X<>Y

26 /

27 ^T I=

28 ARCL X

29 AVIEW

30 END


Example:


Temperature:  299.68 K

Bandwidth:  10,500 Hz

Resistance:  1375 Ω


Results:


Power:  4.3444E-17 W

Volts:  4.8882E-7 V

Current:  3.5550E-10 A


"Johnson-Nyquist Noise" Wikipedia.  Retrieved February 15, 2015 https://en.wikipedia.org/wiki/Johnson%E2%80%93Nyquist_noise




Eddie


All original content copyright, © 2011-2021.  Edward Shore.   Unauthorized use and/or unauthorized distribution for commercial purposes without express and written permission from the author is strictly prohibited.  This blog entry may be distributed for noncommercial purposes, provided that full credit is given to the author. 


DM42 and HP 42S: Quadratic Equation, Characteristic Polynomial, and Eigenvalues

DM42 and HP 42S: Quadratic Equation, Characteristic Polynomial, and Eigenvalues The programs are listed for the Swiss Micros DM42 an...