├── .gitignore ├── .latexmkrc ├── .projectile ├── .travis.yml ├── AUTHORS ├── CMake └── cotire.cmake ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── LICENSE ├── NEWS ├── README.md ├── ReadMe.html ├── ReadMe.odt ├── ReadMe.org ├── ReadMe.pdf ├── docs ├── .latexmkrc ├── .latexmkrc.in ├── CMakeLists.txt ├── Doxyfile.in ├── Poseidon_write_support.html ├── Poseidon_write_support.odt ├── Poseidon_write_support.org ├── Poseidon_write_support.pdf ├── asy │ ├── gbarm.svg │ ├── giorh.svg │ ├── glsec.svg │ ├── nastran_beam_fb.svg │ ├── nastran_beam_l.svg │ ├── nastran_beam_t.svg │ ├── poseidon_beam_fb.svg │ ├── poseidon_beam_hp.svg │ ├── poseidon_beam_l.svg │ └── poseidon_beam_t.svg ├── bdf │ ├── .latexmkrc │ ├── ReadMe.org │ ├── qrg.pdf │ └── qrg.txt ├── beam_cross_sections.html ├── beam_cross_sections.odt ├── beam_cross_sections.org ├── beam_cross_sections.pdf ├── fem │ ├── .latexmkrc │ ├── FEMPoseidonImport.html │ ├── FEMPoseidonImport.org │ ├── FEMPoseidonImport.pdf │ ├── Input-Interface-File.pdf │ ├── Input-Interface-File.txt │ ├── ReadMe.org │ ├── element_mapping.html │ ├── element_mapping.org │ └── element_mapping.pdf ├── header.tex.in ├── images │ ├── fqus.eps │ ├── fqus.svg │ ├── fqus_inks.svg │ ├── ftrs.eps │ ├── ftrs.svg │ ├── ftrs_inks.svg │ ├── gbarm.eps │ ├── gbarm.svg │ ├── gbarm_inks.svg │ ├── gbox.eps │ ├── gbox.svg │ ├── gbox_inks.svg │ ├── gchan.eps │ ├── gchan.svg │ ├── gchan_inks.svg │ ├── gchanr.eps │ ├── gchanr.svg │ ├── gchanr_inks.svg │ ├── gdobo.eps │ ├── gdobo.svg │ ├── gdobo_inks.svg │ ├── gelmnt2_T.eps │ ├── gelmnt2_T.svg │ ├── gelmnt2_T_inks.svg │ ├── giorh.eps │ ├── giorh.svg │ ├── giorh_inks.svg │ ├── giorhr.eps │ ├── giorhr.svg │ ├── giorhr_inks.svg │ ├── glsec.eps │ ├── glsec.svg │ ├── glsec_inks.svg │ ├── glsecr.eps │ ├── glsecr.svg │ ├── glsecr_inks.svg │ ├── gpipe.eps │ ├── gpipe.svg │ ├── gpipe_inks.svg │ ├── gtonp.eps │ ├── gtonp.svg │ ├── gtonp_inks.svg │ ├── gusyi.eps │ ├── gusyi.svg │ ├── gusyi_inks.svg │ ├── hierarch.eps │ ├── hierarch.svg │ ├── hierarch_inks.svg │ ├── nastran_beam_fb.eps │ ├── nastran_beam_fb.svg │ ├── nastran_beam_fb_inks.svg │ ├── nastran_beam_l.eps │ ├── nastran_beam_l.svg │ ├── nastran_beam_l_inks.svg │ ├── nastran_beam_t.eps │ ├── nastran_beam_t.svg │ ├── nastran_beam_t_inks.svg │ ├── poseidon_beam_fb.eps │ ├── poseidon_beam_fb.svg │ ├── poseidon_beam_fb_inks.svg │ ├── poseidon_beam_hp.eps │ ├── poseidon_beam_hp.svg │ ├── poseidon_beam_hp_inks.svg │ ├── poseidon_beam_l.eps │ ├── poseidon_beam_l.svg │ ├── poseidon_beam_l_inks.svg │ ├── poseidon_beam_t.eps │ ├── poseidon_beam_t.svg │ ├── poseidon_beam_t_inks.svg │ ├── tdsupnam.eps │ ├── tdsupnam.svg │ └── tdsupnam_inks.svg ├── my_origin.asy └── mydoxygen.sty.in ├── include ├── app.ico ├── app.rc ├── bdf │ ├── cards.h │ ├── cards_dummy.h │ ├── cards_elements.h │ ├── cards_loads.h │ ├── cards_properties.h │ ├── entry_type.h │ ├── entry_value.h │ ├── errors.h │ ├── file.h │ ├── header.h │ ├── type_bounds.h │ └── types.h ├── bdf2bdf_args.h ├── catch.hpp ├── config.h ├── config.h.in ├── extfem_misc.h ├── extfem_string.h ├── extfemio_stdafx.h ├── fem │ ├── card_hl_node_elem.h │ ├── cards.h │ ├── cards_bounds.h │ ├── cards_ident.h │ ├── cards_mat.h │ ├── cards_node_elem.h │ ├── cards_superele.h │ ├── elements.h │ ├── errors.h │ ├── file.h │ ├── type_bounds.h │ └── types.h ├── fem2fem_args.h ├── my_c++14.h ├── resource.h └── support │ ├── errors.h │ └── grouping.h ├── lib ├── Makefile.am ├── arg-nonnull.h ├── c++defs.h ├── getopt.c ├── getopt.in.h ├── getopt1.c ├── getopt_int.h ├── gettext.h ├── stddef.in.h ├── sys │ └── types.h ├── sys_types.in.h ├── unistd.c ├── unistd.h ├── unistd.in.h └── warn-on-use.h ├── m4 ├── 00gnulib.m4 ├── absolute-header.m4 ├── ax_cxx_compile_stdcxx_11.m4 ├── boost.m4 ├── extensions.m4 ├── extern-inline.m4 ├── getopt.m4 ├── gnulib-cache.m4 ├── gnulib-common.m4 ├── gnulib-comp.m4 ├── gnulib-tool.m4 ├── include_next.m4 ├── nocrash.m4 ├── off_t.m4 ├── onceonly.m4 ├── ssize_t.m4 ├── stddef_h.m4 ├── sys_types_h.m4 ├── unistd_h.m4 ├── warn-on-use.m4 └── wchar_t.m4 ├── propset.sh ├── snippet ├── arg-nonnull.h ├── c++defs.h └── warn-on-use.h ├── src ├── CMakeLists.txt ├── bdf │ ├── CMakeLists.txt │ ├── bdf2bdf.cpp │ ├── bdf2bdf_args.c │ ├── bdf2bdf_args.ggo.in │ ├── bdf_cards.cpp │ ├── bdf_cards_bar_prop.cpp │ ├── bdf_cards_beam_prop.cpp │ ├── bdf_cards_cbar.cpp │ ├── bdf_cards_cbeam.cpp │ ├── bdf_cards_cbush.cpp │ ├── bdf_cards_cmass2.cpp │ ├── bdf_cards_cmass4.cpp │ ├── bdf_cards_comment.cpp │ ├── bdf_cards_conm1.cpp │ ├── bdf_cards_cquad4.cpp │ ├── bdf_cards_crod.cpp │ ├── bdf_cards_ctria3.cpp │ ├── bdf_cards_dummy.cpp │ ├── bdf_cards_element.cpp │ ├── bdf_cards_enddata.cpp │ ├── bdf_cards_grav.cpp │ ├── bdf_cards_grid.cpp │ ├── bdf_cards_load.cpp │ ├── bdf_cards_mat.cpp │ ├── bdf_cards_mat1.cpp │ ├── bdf_cards_mat2.cpp │ ├── bdf_cards_momforce_base.cpp │ ├── bdf_cards_param.cpp │ ├── bdf_cards_pbar.cpp │ ├── bdf_cards_pbarl.cpp │ ├── bdf_cards_pbeam.cpp │ ├── bdf_cards_pbeaml.cpp │ ├── bdf_cards_pbush.cpp │ ├── bdf_cards_prod.cpp │ ├── bdf_cards_properties.cpp │ ├── bdf_cards_pshell.cpp │ ├── bdf_cards_shell.cpp │ ├── bdf_entry_type.cpp │ ├── bdf_errors.cpp │ ├── bdf_file.cpp │ ├── bdf_header.cpp │ ├── bdf_header_case_control_begin_bulk.cpp │ ├── bdf_header_case_control_displacement.cpp │ ├── bdf_header_case_control_echo.cpp │ ├── bdf_header_case_control_load.cpp │ ├── bdf_header_case_control_spcforces.cpp │ ├── bdf_header_case_control_stress.cpp │ ├── bdf_header_case_control_subcase.cpp │ ├── bdf_header_case_control_subtitle.cpp │ ├── bdf_header_case_control_title.cpp │ ├── bdf_header_exec_control_cend.cpp │ ├── bdf_header_exec_control_sol.cpp │ ├── bdf_l_geom.cpp │ ├── bdf_type_bounds.cpp │ ├── bdf_types.cpp │ ├── bdf_types_float.cpp │ ├── bdf_types_int.cpp │ └── bdf_types_list_int.cpp ├── extfem_misc.cpp ├── extfem_string.cpp ├── extfemio_stdafx.cpp ├── fem │ ├── CMakeLists.txt │ ├── fem2fem.cpp │ ├── fem2fem_args.c │ ├── fem2fem_args.ggo.in │ ├── fem_cards.cpp │ ├── fem_cards_belfix.cpp │ ├── fem_cards_beuslo.cpp │ ├── fem_cards_bldep.cpp │ ├── fem_cards_bnbcd.cpp │ ├── fem_cards_bndispl.cpp │ ├── fem_cards_bnload.cpp │ ├── fem_cards_bsell.cpp │ ├── fem_cards_date.cpp │ ├── fem_cards_gbarm.cpp │ ├── fem_cards_gbeamg.cpp │ ├── fem_cards_gbox.cpp │ ├── fem_cards_gchan.cpp │ ├── fem_cards_gchanr.cpp │ ├── fem_cards_gcoord.cpp │ ├── fem_cards_gdobo.cpp │ ├── fem_cards_gecc.cpp │ ├── fem_cards_geccen.cpp │ ├── fem_cards_gelmnt1.cpp │ ├── fem_cards_gelmnt2.cpp │ ├── fem_cards_gelref1.cpp │ ├── fem_cards_gelth.cpp │ ├── fem_cards_giorh.cpp │ ├── fem_cards_giorhr.cpp │ ├── fem_cards_glsec.cpp │ ├── fem_cards_glsecr.cpp │ ├── fem_cards_gnode.cpp │ ├── fem_cards_gpipe.cpp │ ├── fem_cards_gsetmemb.cpp │ ├── fem_cards_gtonp.cpp │ ├── fem_cards_gunivec.cpp │ ├── fem_cards_gusyi.cpp │ ├── fem_cards_helper_beam_prop.cpp │ ├── fem_cards_helper_eccno.cpp │ ├── fem_cards_helper_geoprop.cpp │ ├── fem_cards_helper_transno.cpp │ ├── fem_cards_helper_unknown.cpp │ ├── fem_cards_hierarch.cpp │ ├── fem_cards_hsupstat.cpp │ ├── fem_cards_hsuptran.cpp │ ├── fem_cards_ident.cpp │ ├── fem_cards_iend.cpp │ ├── fem_cards_mgsprng.cpp │ ├── fem_cards_misosel.cpp │ ├── fem_cards_morsmel.cpp │ ├── fem_cards_tdload.cpp │ ├── fem_cards_tdsetnam.cpp │ ├── fem_cards_tdsupnam.cpp │ ├── fem_cards_text.cpp │ ├── fem_elements.cpp │ ├── fem_errors.cpp │ ├── fem_file.cpp │ ├── fem_type_bounds.cpp │ ├── fem_types.cpp │ ├── fem_types_bool.cpp │ ├── fem_types_float.cpp │ ├── fem_types_int.cpp │ ├── fem_types_list_int.cpp │ └── fem_types_str.cpp ├── my_c++14.cpp └── support │ ├── CMakeLists.txt │ ├── support_errors.cpp │ ├── support_grouping.cpp │ ├── support_grouping_csv.cpp │ └── support_grouping_ses.cpp ├── tests ├── CMakeLists.txt ├── catch_list_helper.h ├── catch_vector_helper.h ├── test_bdf_bounds.cpp ├── test_bdf_cards.cpp ├── test_bdf_cards_cbar.cpp ├── test_bdf_cards_cbeam.cpp ├── test_bdf_cards_cbush.cpp ├── test_bdf_cards_cmass2.cpp ├── test_bdf_cards_cmass4.cpp ├── test_bdf_cards_comment.cpp ├── test_bdf_cards_conm1.cpp ├── test_bdf_cards_cquad4.cpp ├── test_bdf_cards_crod.cpp ├── test_bdf_cards_ctria3.cpp ├── test_bdf_cards_elements.cpp ├── test_bdf_cards_enddata.cpp ├── test_bdf_cards_force.cpp ├── test_bdf_cards_grav.cpp ├── test_bdf_cards_grid.cpp ├── test_bdf_cards_load.cpp ├── test_bdf_cards_mat1.cpp ├── test_bdf_cards_mat2.cpp ├── test_bdf_cards_moment.cpp ├── test_bdf_cards_param.cpp ├── test_bdf_cards_pbar.cpp ├── test_bdf_cards_pbarl.cpp ├── test_bdf_cards_pbeam.cpp ├── test_bdf_cards_pbeaml.cpp ├── test_bdf_cards_pbush.cpp ├── test_bdf_cards_prod.cpp ├── test_bdf_cards_properties.cpp ├── test_bdf_cards_pshell.cpp ├── test_bdf_complx.cpp ├── test_bdf_float.cpp ├── test_bdf_header.cpp ├── test_bdf_header_displacement.cpp ├── test_bdf_header_echo.cpp ├── test_bdf_header_spcforces.cpp ├── test_bdf_header_stress.cpp ├── test_bdf_int.cpp ├── test_bdf_list.cpp ├── test_bdf_str.cpp ├── test_bdf_types.cpp ├── test_extfem_misc.cpp ├── test_extfem_string.cpp ├── test_fem_bool.cpp ├── test_fem_cards.cpp ├── test_fem_cards_belfix.cpp ├── test_fem_cards_beuslo.cpp ├── test_fem_cards_bldep.cpp ├── test_fem_cards_bnbcd.cpp ├── test_fem_cards_bndispl.cpp ├── test_fem_cards_bnload.cpp ├── test_fem_cards_bsell.cpp ├── test_fem_cards_date.cpp ├── test_fem_cards_gbarm.cpp ├── test_fem_cards_gbeamg.cpp ├── test_fem_cards_gbox.cpp ├── test_fem_cards_gchan.cpp ├── test_fem_cards_gchanr.cpp ├── test_fem_cards_gcoord.cpp ├── test_fem_cards_gdobo.cpp ├── test_fem_cards_gecc.cpp ├── test_fem_cards_geccen.cpp ├── test_fem_cards_gelmnt1.cpp ├── test_fem_cards_gelmnt2.cpp ├── test_fem_cards_gelref1.cpp ├── test_fem_cards_gelth.cpp ├── test_fem_cards_giorh.cpp ├── test_fem_cards_giorhr.cpp ├── test_fem_cards_glsec.cpp ├── test_fem_cards_glsecr.cpp ├── test_fem_cards_gnode.cpp ├── test_fem_cards_gpipe.cpp ├── test_fem_cards_gsetmemb.cpp ├── test_fem_cards_gtonp.cpp ├── test_fem_cards_gunivec.cpp ├── test_fem_cards_gusyi.cpp ├── test_fem_cards_hierarch.cpp ├── test_fem_cards_hsupstat.cpp ├── test_fem_cards_hsuptran.cpp ├── test_fem_cards_ident.cpp ├── test_fem_cards_iend.cpp ├── test_fem_cards_mgsprng.cpp ├── test_fem_cards_misosel.cpp ├── test_fem_cards_morsmel.cpp ├── test_fem_cards_tdload.cpp ├── test_fem_cards_tdsetnam.cpp ├── test_fem_cards_tdsupnam.cpp ├── test_fem_cards_text.cpp ├── test_fem_elements.cpp ├── test_fem_float.cpp ├── test_fem_int.cpp ├── test_fem_list.cpp ├── test_fem_more_elements.cpp ├── test_support_grouping.cpp ├── test_support_grouping_csv.cpp └── test_support_grouping_ses.cpp └── tools ├── elements_com_cpp_do.py ├── elements_data.py ├── elements_h_do.py ├── elements_test_do.py └── templates ├── fem_elements.cpp ├── fem_elements.h └── test_fem_elements.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/.gitignore -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/.latexmkrc -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- 1 | ;; 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMake/cotire.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/CMake/cotire.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | NEWS file for BDFRead++ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/ReadMe.html -------------------------------------------------------------------------------- /ReadMe.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/ReadMe.odt -------------------------------------------------------------------------------- /ReadMe.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/ReadMe.org -------------------------------------------------------------------------------- /ReadMe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/ReadMe.pdf -------------------------------------------------------------------------------- /docs/.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/.latexmkrc -------------------------------------------------------------------------------- /docs/.latexmkrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/.latexmkrc.in -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/Poseidon_write_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/Poseidon_write_support.html -------------------------------------------------------------------------------- /docs/Poseidon_write_support.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/Poseidon_write_support.odt -------------------------------------------------------------------------------- /docs/Poseidon_write_support.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/Poseidon_write_support.org -------------------------------------------------------------------------------- /docs/Poseidon_write_support.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/Poseidon_write_support.pdf -------------------------------------------------------------------------------- /docs/asy/gbarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/gbarm.svg -------------------------------------------------------------------------------- /docs/asy/giorh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/giorh.svg -------------------------------------------------------------------------------- /docs/asy/glsec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/glsec.svg -------------------------------------------------------------------------------- /docs/asy/nastran_beam_fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/nastran_beam_fb.svg -------------------------------------------------------------------------------- /docs/asy/nastran_beam_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/nastran_beam_l.svg -------------------------------------------------------------------------------- /docs/asy/nastran_beam_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/nastran_beam_t.svg -------------------------------------------------------------------------------- /docs/asy/poseidon_beam_fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/poseidon_beam_fb.svg -------------------------------------------------------------------------------- /docs/asy/poseidon_beam_hp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/poseidon_beam_hp.svg -------------------------------------------------------------------------------- /docs/asy/poseidon_beam_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/poseidon_beam_l.svg -------------------------------------------------------------------------------- /docs/asy/poseidon_beam_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/asy/poseidon_beam_t.svg -------------------------------------------------------------------------------- /docs/bdf/.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/bdf/.latexmkrc -------------------------------------------------------------------------------- /docs/bdf/ReadMe.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/bdf/ReadMe.org -------------------------------------------------------------------------------- /docs/bdf/qrg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/bdf/qrg.pdf -------------------------------------------------------------------------------- /docs/bdf/qrg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/bdf/qrg.txt -------------------------------------------------------------------------------- /docs/beam_cross_sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/beam_cross_sections.html -------------------------------------------------------------------------------- /docs/beam_cross_sections.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/beam_cross_sections.odt -------------------------------------------------------------------------------- /docs/beam_cross_sections.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/beam_cross_sections.org -------------------------------------------------------------------------------- /docs/beam_cross_sections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/beam_cross_sections.pdf -------------------------------------------------------------------------------- /docs/fem/.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/.latexmkrc -------------------------------------------------------------------------------- /docs/fem/FEMPoseidonImport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/FEMPoseidonImport.html -------------------------------------------------------------------------------- /docs/fem/FEMPoseidonImport.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/FEMPoseidonImport.org -------------------------------------------------------------------------------- /docs/fem/FEMPoseidonImport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/FEMPoseidonImport.pdf -------------------------------------------------------------------------------- /docs/fem/Input-Interface-File.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/Input-Interface-File.pdf -------------------------------------------------------------------------------- /docs/fem/Input-Interface-File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/Input-Interface-File.txt -------------------------------------------------------------------------------- /docs/fem/ReadMe.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/ReadMe.org -------------------------------------------------------------------------------- /docs/fem/element_mapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/element_mapping.html -------------------------------------------------------------------------------- /docs/fem/element_mapping.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/element_mapping.org -------------------------------------------------------------------------------- /docs/fem/element_mapping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/fem/element_mapping.pdf -------------------------------------------------------------------------------- /docs/header.tex.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/header.tex.in -------------------------------------------------------------------------------- /docs/images/fqus.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/fqus.eps -------------------------------------------------------------------------------- /docs/images/fqus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/fqus.svg -------------------------------------------------------------------------------- /docs/images/fqus_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/fqus_inks.svg -------------------------------------------------------------------------------- /docs/images/ftrs.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/ftrs.eps -------------------------------------------------------------------------------- /docs/images/ftrs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/ftrs.svg -------------------------------------------------------------------------------- /docs/images/ftrs_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/ftrs_inks.svg -------------------------------------------------------------------------------- /docs/images/gbarm.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbarm.eps -------------------------------------------------------------------------------- /docs/images/gbarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbarm.svg -------------------------------------------------------------------------------- /docs/images/gbarm_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbarm_inks.svg -------------------------------------------------------------------------------- /docs/images/gbox.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbox.eps -------------------------------------------------------------------------------- /docs/images/gbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbox.svg -------------------------------------------------------------------------------- /docs/images/gbox_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gbox_inks.svg -------------------------------------------------------------------------------- /docs/images/gchan.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchan.eps -------------------------------------------------------------------------------- /docs/images/gchan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchan.svg -------------------------------------------------------------------------------- /docs/images/gchan_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchan_inks.svg -------------------------------------------------------------------------------- /docs/images/gchanr.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchanr.eps -------------------------------------------------------------------------------- /docs/images/gchanr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchanr.svg -------------------------------------------------------------------------------- /docs/images/gchanr_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gchanr_inks.svg -------------------------------------------------------------------------------- /docs/images/gdobo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gdobo.eps -------------------------------------------------------------------------------- /docs/images/gdobo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gdobo.svg -------------------------------------------------------------------------------- /docs/images/gdobo_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gdobo_inks.svg -------------------------------------------------------------------------------- /docs/images/gelmnt2_T.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gelmnt2_T.eps -------------------------------------------------------------------------------- /docs/images/gelmnt2_T.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gelmnt2_T.svg -------------------------------------------------------------------------------- /docs/images/gelmnt2_T_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gelmnt2_T_inks.svg -------------------------------------------------------------------------------- /docs/images/giorh.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorh.eps -------------------------------------------------------------------------------- /docs/images/giorh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorh.svg -------------------------------------------------------------------------------- /docs/images/giorh_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorh_inks.svg -------------------------------------------------------------------------------- /docs/images/giorhr.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorhr.eps -------------------------------------------------------------------------------- /docs/images/giorhr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorhr.svg -------------------------------------------------------------------------------- /docs/images/giorhr_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/giorhr_inks.svg -------------------------------------------------------------------------------- /docs/images/glsec.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsec.eps -------------------------------------------------------------------------------- /docs/images/glsec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsec.svg -------------------------------------------------------------------------------- /docs/images/glsec_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsec_inks.svg -------------------------------------------------------------------------------- /docs/images/glsecr.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsecr.eps -------------------------------------------------------------------------------- /docs/images/glsecr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsecr.svg -------------------------------------------------------------------------------- /docs/images/glsecr_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/glsecr_inks.svg -------------------------------------------------------------------------------- /docs/images/gpipe.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gpipe.eps -------------------------------------------------------------------------------- /docs/images/gpipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gpipe.svg -------------------------------------------------------------------------------- /docs/images/gpipe_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gpipe_inks.svg -------------------------------------------------------------------------------- /docs/images/gtonp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gtonp.eps -------------------------------------------------------------------------------- /docs/images/gtonp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gtonp.svg -------------------------------------------------------------------------------- /docs/images/gtonp_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gtonp_inks.svg -------------------------------------------------------------------------------- /docs/images/gusyi.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gusyi.eps -------------------------------------------------------------------------------- /docs/images/gusyi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gusyi.svg -------------------------------------------------------------------------------- /docs/images/gusyi_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/gusyi_inks.svg -------------------------------------------------------------------------------- /docs/images/hierarch.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/hierarch.eps -------------------------------------------------------------------------------- /docs/images/hierarch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/hierarch.svg -------------------------------------------------------------------------------- /docs/images/hierarch_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/hierarch_inks.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_fb.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_fb.eps -------------------------------------------------------------------------------- /docs/images/nastran_beam_fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_fb.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_fb_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_fb_inks.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_l.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_l.eps -------------------------------------------------------------------------------- /docs/images/nastran_beam_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_l.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_l_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_l_inks.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_t.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_t.eps -------------------------------------------------------------------------------- /docs/images/nastran_beam_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_t.svg -------------------------------------------------------------------------------- /docs/images/nastran_beam_t_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/nastran_beam_t_inks.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_fb.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_fb.eps -------------------------------------------------------------------------------- /docs/images/poseidon_beam_fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_fb.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_fb_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_fb_inks.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_hp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_hp.eps -------------------------------------------------------------------------------- /docs/images/poseidon_beam_hp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_hp.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_hp_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_hp_inks.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_l.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_l.eps -------------------------------------------------------------------------------- /docs/images/poseidon_beam_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_l.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_l_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_l_inks.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_t.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_t.eps -------------------------------------------------------------------------------- /docs/images/poseidon_beam_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_t.svg -------------------------------------------------------------------------------- /docs/images/poseidon_beam_t_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/poseidon_beam_t_inks.svg -------------------------------------------------------------------------------- /docs/images/tdsupnam.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/tdsupnam.eps -------------------------------------------------------------------------------- /docs/images/tdsupnam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/tdsupnam.svg -------------------------------------------------------------------------------- /docs/images/tdsupnam_inks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/images/tdsupnam_inks.svg -------------------------------------------------------------------------------- /docs/my_origin.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/my_origin.asy -------------------------------------------------------------------------------- /docs/mydoxygen.sty.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/docs/mydoxygen.sty.in -------------------------------------------------------------------------------- /include/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/app.ico -------------------------------------------------------------------------------- /include/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/app.rc -------------------------------------------------------------------------------- /include/bdf/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/cards.h -------------------------------------------------------------------------------- /include/bdf/cards_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/cards_dummy.h -------------------------------------------------------------------------------- /include/bdf/cards_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/cards_elements.h -------------------------------------------------------------------------------- /include/bdf/cards_loads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/cards_loads.h -------------------------------------------------------------------------------- /include/bdf/cards_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/cards_properties.h -------------------------------------------------------------------------------- /include/bdf/entry_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/entry_type.h -------------------------------------------------------------------------------- /include/bdf/entry_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/entry_value.h -------------------------------------------------------------------------------- /include/bdf/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/errors.h -------------------------------------------------------------------------------- /include/bdf/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/file.h -------------------------------------------------------------------------------- /include/bdf/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/header.h -------------------------------------------------------------------------------- /include/bdf/type_bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/type_bounds.h -------------------------------------------------------------------------------- /include/bdf/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf/types.h -------------------------------------------------------------------------------- /include/bdf2bdf_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/bdf2bdf_args.h -------------------------------------------------------------------------------- /include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/catch.hpp -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/config.h -------------------------------------------------------------------------------- /include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/config.h.in -------------------------------------------------------------------------------- /include/extfem_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/extfem_misc.h -------------------------------------------------------------------------------- /include/extfem_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/extfem_string.h -------------------------------------------------------------------------------- /include/extfemio_stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/extfemio_stdafx.h -------------------------------------------------------------------------------- /include/fem/card_hl_node_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/card_hl_node_elem.h -------------------------------------------------------------------------------- /include/fem/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards.h -------------------------------------------------------------------------------- /include/fem/cards_bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards_bounds.h -------------------------------------------------------------------------------- /include/fem/cards_ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards_ident.h -------------------------------------------------------------------------------- /include/fem/cards_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards_mat.h -------------------------------------------------------------------------------- /include/fem/cards_node_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards_node_elem.h -------------------------------------------------------------------------------- /include/fem/cards_superele.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/cards_superele.h -------------------------------------------------------------------------------- /include/fem/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/elements.h -------------------------------------------------------------------------------- /include/fem/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/errors.h -------------------------------------------------------------------------------- /include/fem/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/file.h -------------------------------------------------------------------------------- /include/fem/type_bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/type_bounds.h -------------------------------------------------------------------------------- /include/fem/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem/types.h -------------------------------------------------------------------------------- /include/fem2fem_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/fem2fem_args.h -------------------------------------------------------------------------------- /include/my_c++14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/my_c++14.h -------------------------------------------------------------------------------- /include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/resource.h -------------------------------------------------------------------------------- /include/support/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/support/errors.h -------------------------------------------------------------------------------- /include/support/grouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/include/support/grouping.h -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/arg-nonnull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/arg-nonnull.h -------------------------------------------------------------------------------- /lib/c++defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/c++defs.h -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/getopt.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/getopt.in.h -------------------------------------------------------------------------------- /lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/getopt1.c -------------------------------------------------------------------------------- /lib/getopt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/getopt_int.h -------------------------------------------------------------------------------- /lib/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/gettext.h -------------------------------------------------------------------------------- /lib/stddef.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/stddef.in.h -------------------------------------------------------------------------------- /lib/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/sys/types.h -------------------------------------------------------------------------------- /lib/sys_types.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/sys_types.in.h -------------------------------------------------------------------------------- /lib/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/unistd.c -------------------------------------------------------------------------------- /lib/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/unistd.h -------------------------------------------------------------------------------- /lib/unistd.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/unistd.in.h -------------------------------------------------------------------------------- /lib/warn-on-use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/lib/warn-on-use.h -------------------------------------------------------------------------------- /m4/00gnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/00gnulib.m4 -------------------------------------------------------------------------------- /m4/absolute-header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/absolute-header.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/boost.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/boost.m4 -------------------------------------------------------------------------------- /m4/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/extensions.m4 -------------------------------------------------------------------------------- /m4/extern-inline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/extern-inline.m4 -------------------------------------------------------------------------------- /m4/getopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/getopt.m4 -------------------------------------------------------------------------------- /m4/gnulib-cache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/gnulib-cache.m4 -------------------------------------------------------------------------------- /m4/gnulib-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/gnulib-common.m4 -------------------------------------------------------------------------------- /m4/gnulib-comp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/gnulib-comp.m4 -------------------------------------------------------------------------------- /m4/gnulib-tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/gnulib-tool.m4 -------------------------------------------------------------------------------- /m4/include_next.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/include_next.m4 -------------------------------------------------------------------------------- /m4/nocrash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/nocrash.m4 -------------------------------------------------------------------------------- /m4/off_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/off_t.m4 -------------------------------------------------------------------------------- /m4/onceonly.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/onceonly.m4 -------------------------------------------------------------------------------- /m4/ssize_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/ssize_t.m4 -------------------------------------------------------------------------------- /m4/stddef_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/stddef_h.m4 -------------------------------------------------------------------------------- /m4/sys_types_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/sys_types_h.m4 -------------------------------------------------------------------------------- /m4/unistd_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/unistd_h.m4 -------------------------------------------------------------------------------- /m4/warn-on-use.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/warn-on-use.m4 -------------------------------------------------------------------------------- /m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/m4/wchar_t.m4 -------------------------------------------------------------------------------- /propset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/propset.sh -------------------------------------------------------------------------------- /snippet/arg-nonnull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/snippet/arg-nonnull.h -------------------------------------------------------------------------------- /snippet/c++defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/snippet/c++defs.h -------------------------------------------------------------------------------- /snippet/warn-on-use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/snippet/warn-on-use.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bdf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/CMakeLists.txt -------------------------------------------------------------------------------- /src/bdf/bdf2bdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf2bdf.cpp -------------------------------------------------------------------------------- /src/bdf/bdf2bdf_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf2bdf_args.c -------------------------------------------------------------------------------- /src/bdf/bdf2bdf_args.ggo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf2bdf_args.ggo.in -------------------------------------------------------------------------------- /src/bdf/bdf_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_bar_prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_bar_prop.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_beam_prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_beam_prop.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cbar.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cbeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cbeam.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cbush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cbush.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cmass2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cmass2.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cmass4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cmass4.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_comment.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_conm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_conm1.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_cquad4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_cquad4.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_crod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_crod.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_ctria3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_ctria3.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_dummy.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_element.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_enddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_enddata.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_grav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_grav.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_grid.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_load.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_mat.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_mat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_mat1.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_mat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_mat2.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_momforce_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_momforce_base.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_param.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pbar.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pbarl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pbarl.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pbeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pbeam.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pbeaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pbeaml.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pbush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pbush.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_prod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_prod.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_properties.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_pshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_pshell.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_cards_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_cards_shell.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_entry_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_entry_type.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_errors.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_file.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_begin_bulk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_begin_bulk.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_displacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_displacement.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_echo.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_load.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_spcforces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_spcforces.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_stress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_stress.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_subcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_subcase.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_subtitle.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_case_control_title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_case_control_title.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_exec_control_cend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_exec_control_cend.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_header_exec_control_sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_header_exec_control_sol.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_l_geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_l_geom.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_type_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_type_bounds.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_types.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_types_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_types_float.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_types_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_types_int.cpp -------------------------------------------------------------------------------- /src/bdf/bdf_types_list_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/bdf/bdf_types_list_int.cpp -------------------------------------------------------------------------------- /src/extfem_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/extfem_misc.cpp -------------------------------------------------------------------------------- /src/extfem_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/extfem_string.cpp -------------------------------------------------------------------------------- /src/extfemio_stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/extfemio_stdafx.cpp -------------------------------------------------------------------------------- /src/fem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/CMakeLists.txt -------------------------------------------------------------------------------- /src/fem/fem2fem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem2fem.cpp -------------------------------------------------------------------------------- /src/fem/fem2fem_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem2fem_args.c -------------------------------------------------------------------------------- /src/fem/fem2fem_args.ggo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem2fem_args.ggo.in -------------------------------------------------------------------------------- /src/fem/fem_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_belfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_belfix.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_beuslo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_beuslo.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_bldep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_bldep.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_bnbcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_bnbcd.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_bndispl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_bndispl.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_bnload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_bnload.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_bsell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_bsell.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_date.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gbarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gbarm.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gbeamg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gbeamg.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gbox.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gchan.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gchanr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gchanr.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gcoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gcoord.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gdobo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gdobo.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gecc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gecc.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_geccen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_geccen.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gelmnt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gelmnt1.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gelmnt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gelmnt2.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gelref1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gelref1.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gelth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gelth.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_giorh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_giorh.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_giorhr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_giorhr.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_glsec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_glsec.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_glsecr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_glsecr.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gnode.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gpipe.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gsetmemb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gsetmemb.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gtonp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gtonp.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gunivec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gunivec.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_gusyi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_gusyi.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_helper_beam_prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_helper_beam_prop.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_helper_eccno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_helper_eccno.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_helper_geoprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_helper_geoprop.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_helper_transno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_helper_transno.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_helper_unknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_helper_unknown.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_hierarch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_hierarch.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_hsupstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_hsupstat.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_hsuptran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_hsuptran.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_ident.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_ident.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_iend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_iend.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_mgsprng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_mgsprng.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_misosel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_misosel.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_morsmel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_morsmel.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_tdload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_tdload.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_tdsetnam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_tdsetnam.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_tdsupnam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_tdsupnam.cpp -------------------------------------------------------------------------------- /src/fem/fem_cards_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_cards_text.cpp -------------------------------------------------------------------------------- /src/fem/fem_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_elements.cpp -------------------------------------------------------------------------------- /src/fem/fem_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_errors.cpp -------------------------------------------------------------------------------- /src/fem/fem_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_file.cpp -------------------------------------------------------------------------------- /src/fem/fem_type_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_type_bounds.cpp -------------------------------------------------------------------------------- /src/fem/fem_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types.cpp -------------------------------------------------------------------------------- /src/fem/fem_types_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types_bool.cpp -------------------------------------------------------------------------------- /src/fem/fem_types_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types_float.cpp -------------------------------------------------------------------------------- /src/fem/fem_types_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types_int.cpp -------------------------------------------------------------------------------- /src/fem/fem_types_list_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types_list_int.cpp -------------------------------------------------------------------------------- /src/fem/fem_types_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/fem/fem_types_str.cpp -------------------------------------------------------------------------------- /src/my_c++14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/my_c++14.cpp -------------------------------------------------------------------------------- /src/support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/support/CMakeLists.txt -------------------------------------------------------------------------------- /src/support/support_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/support/support_errors.cpp -------------------------------------------------------------------------------- /src/support/support_grouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/support/support_grouping.cpp -------------------------------------------------------------------------------- /src/support/support_grouping_csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/support/support_grouping_csv.cpp -------------------------------------------------------------------------------- /src/support/support_grouping_ses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/src/support/support_grouping_ses.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/catch_list_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/catch_list_helper.h -------------------------------------------------------------------------------- /tests/catch_vector_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/catch_vector_helper.h -------------------------------------------------------------------------------- /tests/test_bdf_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_bounds.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cbar.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cbeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cbeam.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cbush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cbush.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cmass2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cmass2.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cmass4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cmass4.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_comment.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_conm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_conm1.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_cquad4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_cquad4.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_crod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_crod.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_ctria3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_ctria3.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_elements.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_enddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_enddata.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_force.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_grav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_grav.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_grid.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_load.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_mat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_mat1.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_mat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_mat2.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_moment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_moment.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_param.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pbar.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pbarl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pbarl.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pbeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pbeam.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pbeaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pbeaml.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pbush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pbush.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_prod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_prod.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_properties.cpp -------------------------------------------------------------------------------- /tests/test_bdf_cards_pshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_cards_pshell.cpp -------------------------------------------------------------------------------- /tests/test_bdf_complx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_complx.cpp -------------------------------------------------------------------------------- /tests/test_bdf_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_float.cpp -------------------------------------------------------------------------------- /tests/test_bdf_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_header.cpp -------------------------------------------------------------------------------- /tests/test_bdf_header_displacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_header_displacement.cpp -------------------------------------------------------------------------------- /tests/test_bdf_header_echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_header_echo.cpp -------------------------------------------------------------------------------- /tests/test_bdf_header_spcforces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_header_spcforces.cpp -------------------------------------------------------------------------------- /tests/test_bdf_header_stress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_header_stress.cpp -------------------------------------------------------------------------------- /tests/test_bdf_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_int.cpp -------------------------------------------------------------------------------- /tests/test_bdf_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_list.cpp -------------------------------------------------------------------------------- /tests/test_bdf_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_str.cpp -------------------------------------------------------------------------------- /tests/test_bdf_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_bdf_types.cpp -------------------------------------------------------------------------------- /tests/test_extfem_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_extfem_misc.cpp -------------------------------------------------------------------------------- /tests/test_extfem_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_extfem_string.cpp -------------------------------------------------------------------------------- /tests/test_fem_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_bool.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_belfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_belfix.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_beuslo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_beuslo.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_bldep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_bldep.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_bnbcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_bnbcd.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_bndispl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_bndispl.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_bnload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_bnload.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_bsell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_bsell.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_date.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gbarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gbarm.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gbeamg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gbeamg.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gbox.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gchan.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gchanr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gchanr.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gcoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gcoord.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gdobo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gdobo.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gecc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gecc.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_geccen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_geccen.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gelmnt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gelmnt1.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gelmnt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gelmnt2.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gelref1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gelref1.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gelth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gelth.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_giorh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_giorh.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_giorhr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_giorhr.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_glsec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_glsec.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_glsecr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_glsecr.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gnode.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gpipe.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gsetmemb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gsetmemb.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gtonp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gtonp.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gunivec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gunivec.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_gusyi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_gusyi.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_hierarch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_hierarch.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_hsupstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_hsupstat.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_hsuptran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_hsuptran.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_ident.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_ident.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_iend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_iend.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_mgsprng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_mgsprng.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_misosel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_misosel.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_morsmel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_morsmel.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_tdload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_tdload.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_tdsetnam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_tdsetnam.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_tdsupnam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_tdsupnam.cpp -------------------------------------------------------------------------------- /tests/test_fem_cards_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_cards_text.cpp -------------------------------------------------------------------------------- /tests/test_fem_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_elements.cpp -------------------------------------------------------------------------------- /tests/test_fem_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_float.cpp -------------------------------------------------------------------------------- /tests/test_fem_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_int.cpp -------------------------------------------------------------------------------- /tests/test_fem_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_list.cpp -------------------------------------------------------------------------------- /tests/test_fem_more_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_fem_more_elements.cpp -------------------------------------------------------------------------------- /tests/test_support_grouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_support_grouping.cpp -------------------------------------------------------------------------------- /tests/test_support_grouping_csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_support_grouping_csv.cpp -------------------------------------------------------------------------------- /tests/test_support_grouping_ses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tests/test_support_grouping_ses.cpp -------------------------------------------------------------------------------- /tools/elements_com_cpp_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/elements_com_cpp_do.py -------------------------------------------------------------------------------- /tools/elements_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/elements_data.py -------------------------------------------------------------------------------- /tools/elements_h_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/elements_h_do.py -------------------------------------------------------------------------------- /tools/elements_test_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/elements_test_do.py -------------------------------------------------------------------------------- /tools/templates/fem_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/templates/fem_elements.cpp -------------------------------------------------------------------------------- /tools/templates/fem_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/templates/fem_elements.h -------------------------------------------------------------------------------- /tools/templates/test_fem_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnvgl/ExtFEMIO/HEAD/tools/templates/test_fem_elements.cpp --------------------------------------------------------------------------------