ScientificConstants Package Updates
The following updates have been made to the ScientificConstants package since its release as an add-on product to Maple 7.
Updates in Maple 8
Updates in Maple 9
Changes to the ScientificConstants package in Maple 8 include the following.
Enhanced GetElements function and new GetIsotopes function
The GetElements function has been enhanced as follows.
Element property names can be given as parameters, in which case the output of GetElements is restricted to those elements for which the specified property or properties are defined.
The output of GetElements can be in the form of element symbols, atomic numbers, or element names, depending on the output=form option. (Previously, you could specify only the names option. This functionality is now obtained by specifying output=names.)
with(ScientificConstants):
GetElements( output=names )[1..5];
hydrogen,helium,lithium,beryllium,boron
For more information, see GetElements.
The new GetIsotopes function returns a sequence of isotopes. Parameters can be specified to restrict the output to only isotopes of a given element, or to only those isotopes for which specified properties are defined. (The particular functionality of returning the isotopes of a given element was previously available using the GetElement function.)
The output of GetIsotopes can be in the form of element symbols or atomic numbers.
GetIsotopes( element=H );
H1,H2,H3,H4,H5,H6
For more information, see GetIsotopes.
Enhanced GetElement function
The GetElement function now accepts various parameters that restrict the output to selected items of the full definition.
The functionality of returning the isotopes of a given element is now available using the GetIsotopes function.
For more information, see GetElement.
Additional Element Properties
The following properties have been added and defined for many elements.
boilingpoint
density
meltingpoint
Parameterized Element Properties
It is now possible to store a procedure for the value or uncertainty of a property of an element. In this case, when the Element object is evaluated, the value or uncertainty is obtained by evaluating the stored procedure. Furthermore, the property name given in the Element object can be parameterized, and the parameters are passed as arguments to the stored procedure when it is evaluated.
This functionality has been used in the package to allow special syntax for the Element constructor in those cases where an element has the value of a property defined under different conditions than the majority of cases.
Element( He, density(gas) );
Element⁡He,density⁡gas
For more information, see Initial Properties for Elements and Isotopes, Element, and ModifyElement.
Other Changes
The functions AddConstant and ModifyConstant now accept the new parameter check=false, which causes any conflicting physical constant definitions to be removed from the package, rather than returning an error.
An element can be given multiple names or spellings using the new parameter names={...} with the AddElement or ModifyElement functions.
The default uncertainty for the value of a physical constant or the value of an element property is now undefined, rather than 0.
An additional form of isotope syntax is now recognized. An isotope can be specified by concatenating the element symbol or name with the mass number, for example, Pb206.
Changes to the ScientificConstants package in Maple 9 include the following.
Derived Physical Constants
Physical constants can also be defined by expressions containing other physical constants. For example, the constant called h bar is defined as h divided by 2*Pi, and in ScientificConstants it is defined in the same way.
GetConstant( hbar );
Planck_constant_over_2pi,symbol=hbar,derive=h2⁢π
evalf( Constant( hbar ) );
1.054571800×10−34
The AddConstant and ModifyConstant functions have new calling sequences that add and modify derived constants. For more information on defining derived physical constants, see AddConstant and ModifyConstant.
The GetConstants function accepts the new option 'derivedfrom'=Const, which returns the physical constants that are directly derived from the constant of name or symbol Const.
GetConstants( derivedfrom=h );
Eh,G0,KJ,Φ0,RK,c1,L,c1,c2,e,hbar,λC,μ,λC,n,λC,p,λC,τ,λC,me,μB
See GetConstants for more information.
Many of the physical constants in ScientificConstants have been defined as derived constants. See Initial Physical Constants.
Interaction With the New ScientificErrorAnalysis Package
Because the objects in ScientificConstants have central values with associated uncertainties, they are also recognized by the new ScientificErrorAnalysis package.
Furthermore, ScientificConstants uses the ScientificErrorAnalysis package to calculate the error of a derived physical constant.
The physical constants in ScientificConstants are defined and derived similarly to the CODATA 1998 Adjustment.
For a discussion of how the ScientificErrorAnalysis and ScientificConstants packages interact, see ScientificErrorAnalysis and ScientificConstants.
See Also
Initial Physical Constants
ScientificConstants
ScientificConstants[AddConstant]
ScientificConstants[Element]
ScientificConstants[GetConstants]
ScientificConstants[GetElement]
ScientificConstants[GetElements]
ScientificConstants[GetIsotopes]
ScientificConstants[ModifyConstant]
ScientificConstants[ModifyElement]
ScientificErrorAnalysis
ScientificErrorAnalysis and ScientificConstants
Download Help Document