Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Thermal resistance #31

Merged
merged 2 commits into from Mar 4, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions Numeric/Units/Dimensional/DK/Quantities.lhs
Expand Up @@ -316,6 +316,28 @@ provide some synonyms that we anticipate will be useful.
> type DAngularMomentum = Dim Pos2 Pos1 Neg1 Zero Zero Zero Zero
> type AngularMomentum = Quantity DAngularMomentum

The reciprocal of thermal conductivity.

> type DThermalResistivity = Dim Neg1 Neg1 Pos3 Zero Pos1 Zero Zero
> type ThermalResistivity = Quantity DThermalResistivity

Thermal conductance and resistance quantities after http://en.wikipedia.org/wiki/Thermal_conductivity#Definitions.

> type DThermalConductance = Dim Pos2 Pos1 Neg3 Zero Neg1 Zero Zero
> type ThermalConductance = Quantity DThermalConductance

> type DThermalResistance = Dim Neg2 Neg1 Pos3 Zero Pos1 Zero Zero
> type ThermalResistance = Quantity DThermalResistance

> type DHeatTransferCoefficient = Dim Zero Pos1 Neg3 Zero Neg1 Zero Zero
> type HeatTransferCoefficient = Quantity DHeatTransferCoefficient

> type DThermalAdmittance = DHeatTransferCoefficient
> type ThermalAdmittance = HeatTransferCoefficient

> type DThermalInsulance = Dim Zero Neg1 Pos3 Zero Pos1 Zero Zero
> type ThermalInsulance = Quantity DThermalInsulance

> type DJerk = Dim Pos1 Zero Neg3 Zero Zero Zero Zero
> type Jerk = Quantity DJerk

Expand Down