-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85bce56
commit 806de4e
Showing
17 changed files
with
18 additions
and
70 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
TRANSFORM/Nuclear/DoseCalculations/Examples/AverageSoftTissueDose_C14.mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
within TRANSFORM.Units.Conversions.Functions; | ||
package Activity_Bq "Conversions for activity (e.g., bequeral, curies). SI unit is [Bq], i.e., [1/s]" | ||
|
||
function to_Bq "Activity: [Bq] -> [Bq]" | ||
extends BaseClasses.to; | ||
|
||
algorithm | ||
y := u; | ||
end to_Bq; | ||
end Activity_Bq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
within TRANSFORM.Units.Conversions.Functions.Activity_Bq; | ||
function to_Bq "Activity: [Bq] -> [Bq]" | ||
extends BaseClasses.to; | ||
|
||
algorithm | ||
y := u; | ||
end to_Bq; |
8 changes: 0 additions & 8 deletions
8
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/BaseClasses/from.mo
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/BaseClasses/package.mo
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/BaseClasses/package.order
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/BaseClasses/to.mo
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/from_Bq.mo
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/from_Ci.mo
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/package.order
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/to_Bq.mo
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
TRANSFORM/Units/Conversions/Functions/SpecificActivity_Bq/to_Ci.mo
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
within TRANSFORM.Units; | ||
type Dose = Real (final unit="J/kg", final quantity= "Dose") "Dose [J/kg]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
within TRANSFORM.Units; | ||
type DoseRate =Real (final unit="J/(s.kg)", final quantity= "DoseRate") | ||
"Dose rate [J/(kg.s)]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
within TRANSFORM.Units; | ||
type SpecificActivity = Real (final unit="1/(s.kg)", final quantity= "SpecificActivity") | ||
"Specific activity [1/(s.kg)]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
within TRANSFORM.Units; | ||
type StoppingPowerParticle =Real (final unit="J/m", final quantity= "StoppingPowerParticle") | ||
"Stopping power for particles [J/m]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters