Skip to content

Commit

Permalink
Merge pull request #10 from Am6er/feature/nuclide-definition-from-dat…
Browse files Browse the repository at this point in the history
…abase

feature (nuclide-def): allow to create nuclide definitions from isotope database
  • Loading branch information
Am6er authored Jun 5, 2024
2 parents 2aac2df + 8b44fd5 commit f70d4c3
Show file tree
Hide file tree
Showing 11 changed files with 829 additions and 198 deletions.
26 changes: 26 additions & 0 deletions BecquerelMonitor/NucBase/DecayRad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,37 @@ public string Name
}
}

public double HalfLife
{
get
{
return this.halfLife;
}
set
{
this.halfLife = value;
}
}

public string HalfLifeUnit
{
get
{
return this.halfLifeUnit;
}
set
{
this.halfLifeUnit = value;
}
}

string name;
double energy;
double intensity;
string decay_line;
string xray_type;
int dectype;
double halfLife;
string halfLifeUnit;
}
}
112 changes: 93 additions & 19 deletions BecquerelMonitor/NucBase/NucBase.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f70d4c3

Please sign in to comment.