mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-21 10:23:37 +00:00
Api able to read abaqus reader input
This commit is contained in:
@@ -189,9 +189,9 @@ function parse_abaqus(fid::IOStream)
|
||||
keyword_sym::Symbol = :none
|
||||
parser::Function = x->()
|
||||
model = Dict{AbstractString, Any}()
|
||||
model["nodes"] = Dict{Int, Vector{AbstractFloat}}()
|
||||
model["nsets"] = Dict{AbstractString, Vector{Int}}()
|
||||
model["elsets"] = Dict{AbstractString, Vector{Int}}()
|
||||
model["nodes"] = Dict{Int64, Vector{Float64}}()
|
||||
model["nsets"] = Dict{ASCIIString, Vector{Int64}}()
|
||||
model["elsets"] = Dict{ASCIIString, Vector{Int64}}()
|
||||
model["elements"] = Dict{Integer, Any}()
|
||||
for idx_end in keyword_indexes[2:end]
|
||||
keyword_line = uppercase(lines[idx_start])
|
||||
|
||||
Reference in New Issue
Block a user