Code to convert American Society of Mechanical Engineers (ASME) Boiler and Pressure Vessel Code (BPVC) Section II-D material data tables through Section VIII Division 3 Part KM-620 into material data tables compatible with ANSYS Finite Element Analysis (FEA) software.
The Julia programming language can be installed for free from your operating system's native store (Microsoft Store, Mac App Store, Ubuntu Software Center, etc.). Just search for Julia
.
The KM620.jl package must be installed from GitHub before this package can be installed. It defines the Division 3 equations required to transform the data. Please download and install it first. https://github.com/nathanrboyer/KM620.jl
- Download and extract this package from Github with any available method. (This might already be done.)
- Search for and open the Julia program.
- You should see a flashing cursor next to the word
julia>
. - Type the close bracket character
]
to enter Pkg mode. - You should now see
pkg>
instead ofjulia>
. - Type
add
followed by the path to the folder you downloaded inside quotation marks. Example 1:add "C:\Users\username\Downloads\ASME_Materials.jl-master"
Example 2:add "S:\Julia\ASME_Materials"
- Type Backspace to return to the normal
julia>
prompt.
The above installation steps will only need to be performed once. Now that Julia and the ASME_Materials package are installed. Just...
- Open the Julia program.
- Type
using ASME_Materials
. - Follow the instructions.