Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliafem/asterreader.jl
AsterReader.jl is a Julia package to read Code Aster binary mesh and result files. Code Aster meshes can be done using another open source software SALOME Platform. Reading results from .rmed files is also partially supported, so it's possible to verify calculations of JuliaFEM.jl against Code Aster solutions.
https://github.com/juliafem/asterreader.jl
code-aster fem mesh parser reader
Last synced: about 1 month ago
JSON representation
AsterReader.jl is a Julia package to read Code Aster binary mesh and result files. Code Aster meshes can be done using another open source software SALOME Platform. Reading results from .rmed files is also partially supported, so it's possible to verify calculations of JuliaFEM.jl against Code Aster solutions.
- Host: GitHub
- URL: https://github.com/juliafem/asterreader.jl
- Owner: JuliaFEM
- License: mit
- Created: 2017-07-18T19:17:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T00:24:18.000Z (over 4 years ago)
- Last Synced: 2024-09-08T22:35:26.387Z (4 months ago)
- Topics: code-aster, fem, mesh, parser, reader
- Language: Julia
- Homepage: https://juliafem.github.io/AsterReader.jl/latest
- Size: 125 KB
- Stars: 5
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AsterReader.jl
[![Build Status](https://travis-ci.org/JuliaFEM/AsterReader.jl.svg?branch=master)](https://travis-ci.org/JuliaFEM/AsterReader.jl)[![Coverage Status](https://coveralls.io/repos/github/JuliaFEM/AsterReader.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaFEM/AsterReader.jl?branch=master)[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliafem.github.io/AsterReader.jl/stable)[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliafem.github.io/AsterReader.jl/latest)[![Issues](https://img.shields.io/github/issues/JuliaFEM/AsterReader.jl.svg)](https://github.com/JuliaFEM/AsterReader.jl/issues)
Package can be used to read Code Aster .med and .rmed file formats. To read Code Aster `.med` file (exported using SALOME), one has to write
```julia
aster_read_mesh(fn)
```
where `fn` is the name of the mesh file. Result is a simple dictionary.In case of several mesh exists in a single file, one must provide also mesh name, e.g.
```julia
aster_read_mesh(fn, mesh_name="my_mesh")
```Package can also be used to read results from `.rmed` files. This is still highly experimental feature and can be used mainly to compare calculation results done using Code Aster to results produced by own FE code.