├── .gitignore ├── AUTHORS ├── LICENSE ├── abapy ├── __init__.py ├── future.py ├── indentation.py ├── materials.py ├── mesh.py ├── misc.py └── postproc.py ├── doc ├── Makefile ├── advanced_examples.rst ├── advanced_examples │ └── indentation │ │ └── simulations │ │ ├── basic_plot_DP.py │ │ ├── basic_plot_Hol.py │ │ ├── classes.py │ │ ├── delete_instance.py │ │ ├── launcher │ │ ├── launcher.py │ │ ├── loader.py │ │ ├── plots │ │ ├── basic_plot_DP.png │ │ └── basic_plot_mesh_DP.png │ │ ├── settings.py │ │ ├── sketch.py │ │ ├── tests.py │ │ └── workdir │ │ └── empty ├── compile_doc.py ├── conf.py ├── example_code │ ├── future │ │ ├── clean_connectivity.inp │ │ ├── clean_connectivity.msh │ │ ├── clean_connectivity.py │ │ ├── clean_connectivity2.msh │ │ ├── mesh-centroid.py │ │ ├── mesh-volume.py │ │ ├── volume.msh │ │ ├── volume_2D.msh │ │ └── volume_3D.msh │ ├── indentation │ │ ├── Boussinesq.py │ │ ├── ContactData-contact_contour.py │ │ ├── ContactData-export2spym.py │ │ ├── ContactData-get_3D_data.py │ │ ├── ContactData-interpolate.py │ │ ├── ContactData.pckl │ │ ├── ContactData.py │ │ ├── ContactData_axi.pckl │ │ ├── ContactData_berk.pckl │ │ ├── DeformableCone2D.inp │ │ ├── DeformableCone2D.py │ │ ├── DeformableCone3D.inp │ │ ├── DeformableCone3D.py │ │ ├── DeformableCone3D.vtk │ │ ├── Get_ContactData.py │ │ ├── Hanson.py │ │ ├── Hertz.py │ │ ├── IndentationMesh.py │ │ ├── MakeInp.py │ │ ├── MakeInp_abqpostproc.py │ │ ├── MakeInp_plot.py │ │ ├── Manager.py │ │ ├── image.gsf │ │ ├── indentation-Step.py │ │ └── workdir │ │ │ ├── abqpostproc.py │ │ │ ├── indentation.pckl │ │ │ ├── indentation_axi.inp │ │ │ ├── indentation_axi.pckl │ │ │ ├── indentation_berko.inp │ │ │ ├── indentation_field.png │ │ │ └── indentation_load-disp.png │ ├── logo │ │ ├── abapy_logo.py │ │ ├── abapy_logo.py~ │ │ └── abapy_logo2.py │ ├── materials │ │ ├── Hollomon.py │ │ └── Hollomon.py~ │ ├── mesh │ │ ├── IndentationMesh.py │ │ ├── IndentationMesh.py~ │ │ ├── Mesh-add_element.py │ │ ├── Mesh-add_element.py~ │ │ ├── Mesh-add_set.py │ │ ├── Mesh-add_set.py~ │ │ ├── Mesh-add_surface.py │ │ ├── Mesh-add_surface.py~ │ │ ├── Mesh-centroids.py │ │ ├── Mesh-convert2tri3.py │ │ ├── Mesh-convert2tri3.py~ │ │ ├── Mesh-draw.py │ │ ├── Mesh-draw_3D.py │ │ ├── Mesh-drop_element.py │ │ ├── Mesh-drop_element.py~ │ │ ├── Mesh-drop_node.py │ │ ├── Mesh-drop_node.py~ │ │ ├── Mesh-dump2inp.py │ │ ├── Mesh-dump2inp.py~ │ │ ├── Mesh-dump2polygons.py │ │ ├── Mesh-dump2polygons_3D.py │ │ ├── Mesh-dump2vtk.png │ │ ├── Mesh-dump2vtk.py │ │ ├── Mesh-dump2vtk.vtk │ │ ├── Mesh-extrude.py │ │ ├── Mesh-extrude.py~ │ │ ├── Mesh-node_set_to_surface.py │ │ ├── Mesh-replace_node.py │ │ ├── Mesh-replace_node.py~ │ │ ├── Mesh-simplify_nodes.py │ │ ├── Mesh-simplify_nodes.py~ │ │ ├── Mesh-sweep.py │ │ ├── Mesh-sweep.py~ │ │ ├── Mesh-sweep.vtk │ │ ├── Mesh-volume.py │ │ ├── Mesh.sweep.py~ │ │ ├── Mesh_apply_reflection.py │ │ ├── Mesh_union.py │ │ ├── Mesh_union.py~ │ │ ├── Nodes-apply_displacement.py │ │ ├── Nodes-apply_displacement.py~ │ │ ├── Nodes-closest_node.py │ │ ├── Nodes-closet_node.py │ │ ├── Nodes-closet_node.py~ │ │ ├── Nodes-eval_function.py │ │ ├── Nodes-eval_function.py~ │ │ ├── Nodes-eval_tensorFunction.py │ │ ├── Nodes-eval_tensorFunction.py~ │ │ ├── Nodes-eval_vectorFunction.py │ │ ├── Nodes-eval_vectorFunction.py~ │ │ ├── Nodes-replace_node.py │ │ ├── Nodes-replace_node.py~ │ │ ├── Nodes-sweep.py~ │ │ ├── Nodes_apply_reflection.py │ │ ├── Nodes_apply_reflection.py~ │ │ ├── RegularQuadMesh.py │ │ ├── RegularQuadMesh.py~ │ │ └── TransitionMesh.py │ ├── postproc │ │ ├── FieldOutput-dump2vtk.py │ │ ├── FieldOutput-dump2vtk.svg │ │ ├── FieldOutput-dump2vtk.vtk │ │ ├── FieldOutput-get_data.py │ │ ├── FieldOutput.py │ │ ├── GetFieldOutput.py │ │ ├── GetFieldOutput.py~ │ │ ├── GetFieldOutput_byRpt.py │ │ ├── GetFieldOutput_byRpt.py~ │ │ ├── GetMesh.py │ │ ├── GetTensorFieldOutput.py │ │ ├── GetTensorFieldOutput.py~ │ │ ├── GetTensorFieldOutput_byRpt.py │ │ ├── GetTensorFieldOutput_byRpt.py~ │ │ ├── GetVectorFieldOutput.py │ │ ├── GetVectorFieldOutput.py~ │ │ ├── GetVectorFieldOutput_byRpt.py │ │ ├── GetVectorFieldOutput_byRpt.py~ │ │ ├── HistoryOutput-average.py │ │ ├── HistoryOutput-average.py~ │ │ ├── HistoryOutput-integral.py │ │ ├── HistoryOutput-integral.py~ │ │ ├── HistoryOutput-plotable.png │ │ ├── HistoryOutput.py~ │ │ ├── HystoryOutput.py │ │ ├── HystoryOutput.py~ │ │ ├── HystoryOutput_test.py~ │ │ ├── Identity_like.py │ │ ├── Identity_like.py~ │ │ ├── MakeFieldOutputReport.py │ │ ├── MakeFieldOutputReport.py~ │ │ ├── ReadFieldOutputReport.py │ │ ├── ReadFieldOutputReport.py~ │ │ ├── TensoFieldOutput-eigen.py │ │ ├── TensoFieldOutput-eigen.py~ │ │ ├── TensorFieldOutput-tresca.py │ │ ├── TensorFieldOutput-tresca.py~ │ │ ├── TensorFieldOutput.py │ │ ├── TensorFieldOutput.py~ │ │ ├── VectorFieldOutput-dump2vtk.py │ │ ├── VectorFieldOutput-dump2vtk.py~ │ │ ├── VectorFieldOutput-dump2vtk.svg │ │ ├── VectorFieldOutput-get_data.py │ │ ├── VectorFieldOutput-get_data.py~ │ │ ├── VectorFieldOutput.py │ │ ├── VectorFieldOutput.py~ │ │ ├── historyOutput-plotable.py │ │ ├── indentation_core_step0_frame1_S11_element-nodal.rpt │ │ ├── indentation_core_step0_frame1_S11_elements.rpt │ │ ├── indentation_core_step0_frame1_S11_nodes.rpt │ │ ├── indentation_core_step0_frame1_U-MAG_nodal.rpt │ │ ├── indentation_core_step0_frame1_U1_nodal.rpt │ │ ├── test.rpt │ │ ├── vector.vtk │ │ └── vector.vtk~ │ └── tutorial │ │ ├── fancier_example.py │ │ ├── fancier_example_abq.py │ │ ├── first_example.py │ │ ├── first_example_abq.py │ │ ├── indentation_axi.inp │ │ ├── indentation_axi_target.inp │ │ └── workdir │ │ ├── indentation_axi.inp │ │ ├── indentation_axi.pckl │ │ ├── indentation_axi_fancier.inp │ │ └── indentation_axi_fancier.pckl ├── indentation.rst ├── index.rst ├── ipython_directive.py ├── make.bat ├── materials.rst ├── mesh.rst ├── misc.rst ├── postproc.rst ├── sphinxext │ ├── apigen.py │ ├── docscrape.py │ ├── docscrape_sphinx.py │ ├── inheritance_diagram.py │ ├── ipython_console_highlighting.py │ ├── ipython_directive.py │ └── numpydoc.py └── tutorial.rst ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/LICENSE -------------------------------------------------------------------------------- /abapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/__init__.py -------------------------------------------------------------------------------- /abapy/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/future.py -------------------------------------------------------------------------------- /abapy/indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/indentation.py -------------------------------------------------------------------------------- /abapy/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/materials.py -------------------------------------------------------------------------------- /abapy/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/mesh.py -------------------------------------------------------------------------------- /abapy/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/misc.py -------------------------------------------------------------------------------- /abapy/postproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/abapy/postproc.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/advanced_examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples.rst -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/basic_plot_DP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/basic_plot_DP.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/basic_plot_Hol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/basic_plot_Hol.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/classes.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/delete_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/delete_instance.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/launcher: -------------------------------------------------------------------------------- 1 | python launcher.py 2 | -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/launcher.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/loader.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/plots/basic_plot_DP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/plots/basic_plot_DP.png -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/plots/basic_plot_mesh_DP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/plots/basic_plot_mesh_DP.png -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/settings.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/sketch.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/advanced_examples/indentation/simulations/tests.py -------------------------------------------------------------------------------- /doc/advanced_examples/indentation/simulations/workdir/empty: -------------------------------------------------------------------------------- 1 | emmpty 2 | -------------------------------------------------------------------------------- /doc/compile_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/compile_doc.py -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/example_code/future/clean_connectivity.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/clean_connectivity.inp -------------------------------------------------------------------------------- /doc/example_code/future/clean_connectivity.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/clean_connectivity.msh -------------------------------------------------------------------------------- /doc/example_code/future/clean_connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/clean_connectivity.py -------------------------------------------------------------------------------- /doc/example_code/future/clean_connectivity2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/clean_connectivity2.msh -------------------------------------------------------------------------------- /doc/example_code/future/mesh-centroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/mesh-centroid.py -------------------------------------------------------------------------------- /doc/example_code/future/mesh-volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/mesh-volume.py -------------------------------------------------------------------------------- /doc/example_code/future/volume.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/volume.msh -------------------------------------------------------------------------------- /doc/example_code/future/volume_2D.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/volume_2D.msh -------------------------------------------------------------------------------- /doc/example_code/future/volume_3D.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/future/volume_3D.msh -------------------------------------------------------------------------------- /doc/example_code/indentation/Boussinesq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/Boussinesq.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData-contact_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData-contact_contour.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData-export2spym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData-export2spym.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData-get_3D_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData-get_3D_data.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData-interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData-interpolate.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData.pckl -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData.py -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData_axi.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData_axi.pckl -------------------------------------------------------------------------------- /doc/example_code/indentation/ContactData_berk.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/ContactData_berk.pckl -------------------------------------------------------------------------------- /doc/example_code/indentation/DeformableCone2D.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/DeformableCone2D.inp -------------------------------------------------------------------------------- /doc/example_code/indentation/DeformableCone2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/DeformableCone2D.py -------------------------------------------------------------------------------- /doc/example_code/indentation/DeformableCone3D.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/DeformableCone3D.inp -------------------------------------------------------------------------------- /doc/example_code/indentation/DeformableCone3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/DeformableCone3D.py -------------------------------------------------------------------------------- /doc/example_code/indentation/DeformableCone3D.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/DeformableCone3D.vtk -------------------------------------------------------------------------------- /doc/example_code/indentation/Get_ContactData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/Get_ContactData.py -------------------------------------------------------------------------------- /doc/example_code/indentation/Hanson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/Hanson.py -------------------------------------------------------------------------------- /doc/example_code/indentation/Hertz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/Hertz.py -------------------------------------------------------------------------------- /doc/example_code/indentation/IndentationMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/IndentationMesh.py -------------------------------------------------------------------------------- /doc/example_code/indentation/MakeInp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/MakeInp.py -------------------------------------------------------------------------------- /doc/example_code/indentation/MakeInp_abqpostproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/MakeInp_abqpostproc.py -------------------------------------------------------------------------------- /doc/example_code/indentation/MakeInp_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/MakeInp_plot.py -------------------------------------------------------------------------------- /doc/example_code/indentation/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/Manager.py -------------------------------------------------------------------------------- /doc/example_code/indentation/image.gsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/image.gsf -------------------------------------------------------------------------------- /doc/example_code/indentation/indentation-Step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/indentation-Step.py -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/abqpostproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/abqpostproc.py -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation.pckl -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation_axi.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation_axi.inp -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation_axi.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation_axi.pckl -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation_berko.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation_berko.inp -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation_field.png -------------------------------------------------------------------------------- /doc/example_code/indentation/workdir/indentation_load-disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/indentation/workdir/indentation_load-disp.png -------------------------------------------------------------------------------- /doc/example_code/logo/abapy_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/logo/abapy_logo.py -------------------------------------------------------------------------------- /doc/example_code/logo/abapy_logo.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/logo/abapy_logo.py~ -------------------------------------------------------------------------------- /doc/example_code/logo/abapy_logo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/logo/abapy_logo2.py -------------------------------------------------------------------------------- /doc/example_code/materials/Hollomon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/materials/Hollomon.py -------------------------------------------------------------------------------- /doc/example_code/materials/Hollomon.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/materials/Hollomon.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/IndentationMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/IndentationMesh.py -------------------------------------------------------------------------------- /doc/example_code/mesh/IndentationMesh.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/IndentationMesh.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_element.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_element.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_element.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_set.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_set.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_set.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_surface.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-add_surface.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-add_surface.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-centroids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-centroids.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-convert2tri3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-convert2tri3.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-convert2tri3.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-convert2tri3.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-draw.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-draw_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-draw_3D.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-drop_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-drop_element.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-drop_element.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-drop_element.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-drop_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-drop_node.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-drop_node.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-drop_node.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2inp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2inp.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2inp.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2inp.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2polygons.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2polygons_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2polygons_3D.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2vtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2vtk.png -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2vtk.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-dump2vtk.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-dump2vtk.vtk -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-extrude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-extrude.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-extrude.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-extrude.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-node_set_to_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-node_set_to_surface.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-replace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-replace_node.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-replace_node.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-replace_node.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-simplify_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-simplify_nodes.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-simplify_nodes.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-simplify_nodes.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-sweep.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-sweep.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-sweep.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-sweep.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-sweep.vtk -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh-volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh-volume.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh.sweep.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh.sweep.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh_apply_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh_apply_reflection.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh_union.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Mesh_union.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Mesh_union.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-apply_displacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-apply_displacement.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-apply_displacement.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-apply_displacement.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-closest_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-closest_node.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-closet_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-closet_node.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-closet_node.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-closet_node.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_function.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_function.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_function.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_tensorFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_tensorFunction.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_tensorFunction.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_tensorFunction.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_vectorFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_vectorFunction.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-eval_vectorFunction.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-eval_vectorFunction.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-replace_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-replace_node.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-replace_node.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-replace_node.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes-sweep.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes-sweep.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes_apply_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes_apply_reflection.py -------------------------------------------------------------------------------- /doc/example_code/mesh/Nodes_apply_reflection.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/Nodes_apply_reflection.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/RegularQuadMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/RegularQuadMesh.py -------------------------------------------------------------------------------- /doc/example_code/mesh/RegularQuadMesh.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/RegularQuadMesh.py~ -------------------------------------------------------------------------------- /doc/example_code/mesh/TransitionMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/mesh/TransitionMesh.py -------------------------------------------------------------------------------- /doc/example_code/postproc/FieldOutput-dump2vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/FieldOutput-dump2vtk.py -------------------------------------------------------------------------------- /doc/example_code/postproc/FieldOutput-dump2vtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/FieldOutput-dump2vtk.svg -------------------------------------------------------------------------------- /doc/example_code/postproc/FieldOutput-dump2vtk.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/FieldOutput-dump2vtk.vtk -------------------------------------------------------------------------------- /doc/example_code/postproc/FieldOutput-get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/FieldOutput-get_data.py -------------------------------------------------------------------------------- /doc/example_code/postproc/FieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/FieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetFieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetFieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetFieldOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetFieldOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/GetFieldOutput_byRpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetFieldOutput_byRpt.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetFieldOutput_byRpt.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetFieldOutput_byRpt.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/GetMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetMesh.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetTensorFieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetTensorFieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetTensorFieldOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetTensorFieldOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/GetTensorFieldOutput_byRpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetTensorFieldOutput_byRpt.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetTensorFieldOutput_byRpt.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetTensorFieldOutput_byRpt.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/GetVectorFieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetVectorFieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetVectorFieldOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetVectorFieldOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/GetVectorFieldOutput_byRpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetVectorFieldOutput_byRpt.py -------------------------------------------------------------------------------- /doc/example_code/postproc/GetVectorFieldOutput_byRpt.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/GetVectorFieldOutput_byRpt.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput-average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HistoryOutput-average.py -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput-average.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HistoryOutput-average.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput-integral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HistoryOutput-integral.py -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput-integral.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HistoryOutput-integral.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput-plotable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HistoryOutput-plotable.png -------------------------------------------------------------------------------- /doc/example_code/postproc/HistoryOutput.py~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/example_code/postproc/HystoryOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HystoryOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/HystoryOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HystoryOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/HystoryOutput_test.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/HystoryOutput_test.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/Identity_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/Identity_like.py -------------------------------------------------------------------------------- /doc/example_code/postproc/Identity_like.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/Identity_like.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/MakeFieldOutputReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/MakeFieldOutputReport.py -------------------------------------------------------------------------------- /doc/example_code/postproc/MakeFieldOutputReport.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/MakeFieldOutputReport.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/ReadFieldOutputReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/ReadFieldOutputReport.py -------------------------------------------------------------------------------- /doc/example_code/postproc/ReadFieldOutputReport.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/ReadFieldOutputReport.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/TensoFieldOutput-eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensoFieldOutput-eigen.py -------------------------------------------------------------------------------- /doc/example_code/postproc/TensoFieldOutput-eigen.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensoFieldOutput-eigen.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/TensorFieldOutput-tresca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensorFieldOutput-tresca.py -------------------------------------------------------------------------------- /doc/example_code/postproc/TensorFieldOutput-tresca.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensorFieldOutput-tresca.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/TensorFieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensorFieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/TensorFieldOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/TensorFieldOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput-dump2vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput-dump2vtk.py -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput-dump2vtk.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput-dump2vtk.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput-dump2vtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput-dump2vtk.svg -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput-get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput-get_data.py -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput-get_data.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput-get_data.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput.py -------------------------------------------------------------------------------- /doc/example_code/postproc/VectorFieldOutput.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/VectorFieldOutput.py~ -------------------------------------------------------------------------------- /doc/example_code/postproc/historyOutput-plotable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/historyOutput-plotable.py -------------------------------------------------------------------------------- /doc/example_code/postproc/indentation_core_step0_frame1_S11_element-nodal.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/indentation_core_step0_frame1_S11_element-nodal.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/indentation_core_step0_frame1_S11_elements.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/indentation_core_step0_frame1_S11_elements.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/indentation_core_step0_frame1_S11_nodes.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/indentation_core_step0_frame1_S11_nodes.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/indentation_core_step0_frame1_U-MAG_nodal.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/indentation_core_step0_frame1_U-MAG_nodal.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/indentation_core_step0_frame1_U1_nodal.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/indentation_core_step0_frame1_U1_nodal.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/test.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/test.rpt -------------------------------------------------------------------------------- /doc/example_code/postproc/vector.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/vector.vtk -------------------------------------------------------------------------------- /doc/example_code/postproc/vector.vtk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/postproc/vector.vtk~ -------------------------------------------------------------------------------- /doc/example_code/tutorial/fancier_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/fancier_example.py -------------------------------------------------------------------------------- /doc/example_code/tutorial/fancier_example_abq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/fancier_example_abq.py -------------------------------------------------------------------------------- /doc/example_code/tutorial/first_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/first_example.py -------------------------------------------------------------------------------- /doc/example_code/tutorial/first_example_abq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/first_example_abq.py -------------------------------------------------------------------------------- /doc/example_code/tutorial/indentation_axi.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/indentation_axi.inp -------------------------------------------------------------------------------- /doc/example_code/tutorial/indentation_axi_target.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/indentation_axi_target.inp -------------------------------------------------------------------------------- /doc/example_code/tutorial/workdir/indentation_axi.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/workdir/indentation_axi.inp -------------------------------------------------------------------------------- /doc/example_code/tutorial/workdir/indentation_axi.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/workdir/indentation_axi.pckl -------------------------------------------------------------------------------- /doc/example_code/tutorial/workdir/indentation_axi_fancier.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/workdir/indentation_axi_fancier.inp -------------------------------------------------------------------------------- /doc/example_code/tutorial/workdir/indentation_axi_fancier.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/example_code/tutorial/workdir/indentation_axi_fancier.pckl -------------------------------------------------------------------------------- /doc/indentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/indentation.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/ipython_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/ipython_directive.py -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/materials.rst -------------------------------------------------------------------------------- /doc/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/mesh.rst -------------------------------------------------------------------------------- /doc/misc.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: abapy.misc 2 | :members: -------------------------------------------------------------------------------- /doc/postproc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/postproc.rst -------------------------------------------------------------------------------- /doc/sphinxext/apigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/apigen.py -------------------------------------------------------------------------------- /doc/sphinxext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/docscrape.py -------------------------------------------------------------------------------- /doc/sphinxext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/sphinxext/inheritance_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/inheritance_diagram.py -------------------------------------------------------------------------------- /doc/sphinxext/ipython_console_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/ipython_console_highlighting.py -------------------------------------------------------------------------------- /doc/sphinxext/ipython_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/ipython_directive.py -------------------------------------------------------------------------------- /doc/sphinxext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/sphinxext/numpydoc.py -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcharleux/abapy/HEAD/setup.py --------------------------------------------------------------------------------