├── .ci ├── build_matrix.sh ├── collect_mapdl_logs_locals.sh ├── collect_mapdl_logs_remote.sh ├── display_logs_locals.sh ├── display_logs_remote.sh ├── display_test.py ├── entrypoint.sh ├── pytest_summary.py ├── requirements_test_xvfb.txt ├── requirements_testing_minimal.txt ├── start_mapdl.sh ├── substitute_defective_gif.sh └── waiting_services.sh ├── .devcontainer ├── codespaces-dev │ ├── Dockerfile │ ├── README.rst │ ├── devcontainer.json │ ├── docker-compose.yml │ ├── requirements.txt │ ├── start.sh │ └── welcome.rst ├── codespaces-docs │ ├── Dockerfile │ ├── devcontainer.json │ ├── docker-compose.yml │ ├── requirements.txt │ ├── start.sh │ └── welcome.rst └── devcontainer-local │ ├── Dockerfile │ ├── devcontainer.json │ ├── docker-compose.yml │ ├── requirements.txt │ ├── start.sh │ └── welcome.rst ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── documentation.yml │ ├── examples.yml │ └── feature.yml ├── actions │ ├── build-matrix │ │ └── action.yml │ ├── pytest-summary │ │ └── action.yml │ ├── test-julia │ │ └── action.yml │ └── test-windows │ │ └── action.yml ├── dependabot.yml ├── labeler.yml ├── labels.yml ├── pull_request_template.md └── workflows │ ├── approver.yml │ ├── cache_cleaner.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── doc-build.yml │ ├── docker_clean_untagged.yml │ ├── label.yml │ ├── linkchecker.yml │ ├── migrator.yml │ ├── pr-docs-cleaner.yml │ ├── test-local.yml │ └── test-remote.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── SECURITY.md ├── codecov.yml ├── doc ├── .vale.ini ├── Makefile ├── changelog.d │ ├── 4337.maintenance.md │ ├── 4341.maintenance.md │ ├── 4342.added.md │ └── changelog_template.jinja ├── make.bat ├── post_process_tex.py ├── source │ ├── 404.rst │ ├── _static │ │ ├── custom.css │ │ ├── landing_page_demo.gif │ │ ├── pyansys-logo-light_mode.png │ │ ├── pymapdl_dark_logo_large.png │ │ ├── pymapdl_dark_logo_small.png │ │ ├── pymapdl_light_logo_large.png │ │ └── pymapdl_light_logo_small.png │ ├── _templates │ │ └── layout.html │ ├── api │ │ ├── commands.rst │ │ ├── components.rst │ │ ├── database.rst │ │ ├── geometry.rst │ │ ├── helper.rst │ │ ├── index.rst │ │ ├── information.rst │ │ ├── inline.rst │ │ ├── krylov.rst │ │ ├── launcher.rst │ │ ├── logging.rst │ │ ├── mapdl.rst │ │ ├── mesh.rst │ │ ├── parameters.rst │ │ ├── plotting.rst │ │ ├── pool.rst │ │ ├── post.rst │ │ ├── solution.rst │ │ └── xpl.rst │ ├── changelog.rst │ ├── cheat_sheet │ │ ├── .gitignore │ │ ├── _static │ │ │ └── README.md │ │ └── cheat_sheet.qmd │ ├── conf.py │ ├── examples │ │ ├── devportal.rst │ │ ├── extended_examples │ │ │ ├── Krylov │ │ │ │ ├── files │ │ │ │ │ ├── file_15_1.png │ │ │ │ │ ├── file_36_1.png │ │ │ │ │ └── file_38_0.png │ │ │ │ └── krylov_example.rst │ │ │ ├── beam_analysis_with_reporting │ │ │ │ ├── beam_analysis_report.rst │ │ │ │ ├── displacement_plot.png │ │ │ │ ├── geometry.png │ │ │ │ ├── ibeam_analysis_report.docx │ │ │ │ ├── ibeam_analysis_report.md │ │ │ │ ├── ibeam_section.png │ │ │ │ └── stress_plot.png │ │ │ ├── dash │ │ │ │ ├── dash-vm35.zip │ │ │ │ └── dash_example.rst │ │ │ ├── ex_01-gmsh_example │ │ │ │ ├── ex_01-gmsh_example.rst │ │ │ │ ├── gmsh_generator.py │ │ │ │ ├── mesh_converter.py │ │ │ │ ├── modal_analysis.py │ │ │ │ └── pf_coil_case_1.stp │ │ │ ├── executable │ │ │ │ ├── cli_rotor.py │ │ │ │ ├── cli_rotor.spec │ │ │ │ ├── executable.rst │ │ │ │ ├── rotor.py │ │ │ │ ├── volumes.jpg │ │ │ │ └── volumes_with_watermark.jpg │ │ │ ├── gui │ │ │ │ ├── executable.rst │ │ │ │ ├── final_app_postprocessing.png │ │ │ │ ├── final_app_preprocessing.png │ │ │ │ ├── gui_app.py │ │ │ │ └── requirements.txt │ │ │ ├── hpc │ │ │ │ ├── fitness_plot.png │ │ │ │ ├── genes.png │ │ │ │ ├── hpc_ml_ga.rst │ │ │ │ ├── ml_ga_beam.py │ │ │ │ └── requirements.txt │ │ │ ├── index.rst │ │ │ ├── sfem │ │ │ │ ├── mean.png │ │ │ │ ├── pdf.png │ │ │ │ ├── problem.png │ │ │ │ ├── realizations.png │ │ │ │ ├── sfem.py │ │ │ │ ├── stochastic_fem.rst │ │ │ │ ├── variance.png │ │ │ │ └── young_modulus_realizations.png │ │ │ └── static_rom │ │ │ │ ├── images │ │ │ │ └── static_ROM_file_structure.png │ │ │ │ ├── static_rom_data_generation.py │ │ │ │ └── static_rom_data_generation.rst │ │ └── index.rst │ ├── getting_started │ │ ├── contribution.rst │ │ ├── devcontainer.rst │ │ ├── develop_pymapdl.rst │ │ ├── docker.rst │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── install_mapdl.rst │ │ ├── install_pymapdl.rst │ │ ├── launcher.rst │ │ ├── learning.rst │ │ ├── macos.rst │ │ ├── make_container.rst │ │ ├── project.rst │ │ ├── using_julia.rst │ │ ├── versioning.rst │ │ ├── write_documentation.rst │ │ └── wsl.rst │ ├── helpers.py │ ├── images │ │ ├── 2d_pressure.png │ │ ├── _commands │ │ │ ├── GSTR5-2.svg │ │ │ ├── Linebrk.gif │ │ │ ├── eqRESP2.gif │ │ │ ├── gEDBO1.svg │ │ │ ├── gEDLC1.svg │ │ │ ├── gEINFIN1a.png │ │ │ ├── gEINFIN1b.png │ │ │ ├── gEINFIN2a.png │ │ │ ├── gEINFIN2b.png │ │ │ ├── gEINFIN3.png │ │ │ ├── gEINFIN4.png │ │ │ ├── gEINFIN5.png │ │ │ ├── gENDRELEASE1.png │ │ │ ├── gENDRELEASE2.png │ │ │ ├── gENDRELEASE3.png │ │ │ ├── gENDRELEASE4.png │ │ │ ├── gENDRELEASE5.png │ │ │ ├── gENDRELEASE6.png │ │ │ ├── gENDRELEASE7.png │ │ │ ├── gENDRELEASE8.png │ │ │ ├── gENDRELEASE9.png │ │ │ ├── gFFT1.PNG │ │ │ ├── gFFT2.PNG │ │ │ ├── gFFT3.PNG │ │ │ ├── gINIT1.svg │ │ │ ├── gKCEN1.svg │ │ │ ├── gMERGE1.png │ │ │ ├── gMERGE2.png │ │ │ ├── gMERGE3.png │ │ │ ├── gMSHP1.svg │ │ │ ├── gOCDATA1.png │ │ │ ├── gPDBBMproblevels.gif │ │ │ ├── gPDCORR00.gif │ │ │ ├── gPDCORR06.gif │ │ │ ├── gPDCORR09.gif │ │ │ ├── gPDMETHbbm.gif │ │ │ ├── gPDMETHccd.gif │ │ │ ├── gPDMETHdir.gif │ │ │ ├── gPDMETHlhs.gif │ │ │ ├── gPDPLOTlimits1.gif │ │ │ ├── gPDVARbeta.svg │ │ │ ├── gPDVARbetacum.svg │ │ │ ├── gPDVARexpo.svg │ │ │ ├── gPDVARexpocum.svg │ │ │ ├── gPDVARgama.svg │ │ │ ├── gPDVARgamacum.svg │ │ │ ├── gPDVARgaus.svg │ │ │ ├── gPDVARgauscum.svg │ │ │ ├── gPDVARlog1.svg │ │ │ ├── gPDVARlog2.svg │ │ │ ├── gPDVARlog2cum.svg │ │ │ ├── gPDVARtgau.svg │ │ │ ├── gPDVARtgaucum.svg │ │ │ ├── gPDVARtria.svg │ │ │ ├── gPDVARtriacum.svg │ │ │ ├── gPDVARunif.svg │ │ │ ├── gPDVARunifcum.svg │ │ │ ├── gPDVARweib.svg │ │ │ ├── gPDVARweibcum.svg │ │ │ ├── gPORT1.gif │ │ │ ├── gPORT2.gif │ │ │ ├── gPORT3.gif │ │ │ ├── gPSMAT1.gif │ │ │ ├── gPSMAT2.svg │ │ │ ├── gRACE1.svg │ │ │ ├── gRDEC.svg │ │ │ ├── gSECD1.svg │ │ │ ├── gSECD10.svg │ │ │ ├── gSECD11.svg │ │ │ ├── gSECD12.svg │ │ │ ├── gSECD13.svg │ │ │ ├── gSECD14a.svg │ │ │ ├── gSECD14b.svg │ │ │ ├── gSECD14c.svg │ │ │ ├── gSECD15a.svg │ │ │ ├── gSECD15b.svg │ │ │ ├── gSECD15c.svg │ │ │ ├── gSECD16.svg │ │ │ ├── gSECD18.svg │ │ │ ├── gSECD19.svg │ │ │ ├── gSECD2.svg │ │ │ ├── gSECD20.svg │ │ │ ├── gSECD21.svg │ │ │ ├── gSECD22.svg │ │ │ ├── gSECD22b.svg │ │ │ ├── gSECD22c.svg │ │ │ ├── gSECD25.svg │ │ │ ├── gSECD26.svg │ │ │ ├── gSECD27.svg │ │ │ ├── gSECD28.svg │ │ │ ├── gSECD29.svg │ │ │ ├── gSECD3.svg │ │ │ ├── gSECD30.svg │ │ │ ├── gSECD31.svg │ │ │ ├── gSECD32.svg │ │ │ ├── gSECD33.svg │ │ │ ├── gSECD34.svg │ │ │ ├── gSECD35.svg │ │ │ ├── gSECD4.svg │ │ │ ├── gSECD5.svg │ │ │ ├── gSECD6.svg │ │ │ ├── gSECD7.svg │ │ │ ├── gSECD8.svg │ │ │ ├── gSECD9.svg │ │ │ ├── gSECD_pipe.svg │ │ │ ├── gSECO1.svg │ │ │ ├── gSECP.fig.3.jpg │ │ │ ├── gSECP1.jpg │ │ │ ├── gSECR2.svg │ │ │ ├── gSECR3.svg │ │ │ ├── gSECT1.svg │ │ │ ├── gSFCONTROL1.png │ │ │ ├── gSFCONTROL10.png │ │ │ ├── gSFCONTROL11.png │ │ │ ├── gSFCONTROL12.png │ │ │ ├── gSFCONTROL13.png │ │ │ ├── gSFCONTROL14.png │ │ │ ├── gSFCONTROL15.png │ │ │ ├── gSFCONTROL16.png │ │ │ ├── gSFCONTROL2.png │ │ │ ├── gSFCONTROL3.png │ │ │ ├── gSFCONTROL4.png │ │ │ ├── gSFCONTROL5.png │ │ │ ├── gSFCONTROL6.png │ │ │ ├── gSFCONTROL7.png │ │ │ ├── gSFCONTROL8.png │ │ │ ├── gSFCONTROL9.png │ │ │ ├── gSHSDcontact.eps │ │ │ ├── gSHSDoverlap.eps │ │ │ ├── gTORU1.svg │ │ │ ├── gcmd2ddispltopnodes.png │ │ │ ├── gcmd_mlist_example.PNG │ │ │ ├── gcmd_oczone_comp.png │ │ │ ├── gcmd_oczone_compz.png │ │ │ ├── gcmd_oczone_pip.png │ │ │ ├── gcmd_oczone_zloc.png │ │ │ ├── gcmdexxt1.jpg │ │ │ ├── gcmdrsymm1.png │ │ │ ├── gcmdrsymm2.png │ │ │ ├── gcmdrsymm3.png │ │ │ ├── gcmdrsymm4.png │ │ │ ├── gcmdrsymm5.png │ │ │ ├── gcmdrsymm_VFextrusion.png │ │ │ ├── gcmdrsymm_cyclic_reflection.png │ │ │ ├── gcmdrsymm_planar_reflection.png │ │ │ ├── ghflumpcircuitload2.GIF │ │ │ ├── gpdcfld1.svg │ │ │ ├── gpdcfld2.svg │ │ │ ├── graphics - Shortcut.lnk │ │ │ ├── gsecplotshell.jpg │ │ │ └── gsupportblock.png │ │ ├── aplot.png │ │ ├── architecture_diagram_dark_theme.png │ │ ├── architecture_diagram_light_theme.png │ │ ├── bc_plot.png │ │ ├── bc_plot_2.png │ │ ├── bracket_dimensions.png │ │ ├── cicd_dark_theme.png │ │ ├── cicd_light_theme.png │ │ ├── codecov_increase.png │ │ ├── codespaces.png │ │ ├── cyclic_disc.png │ │ ├── cylinder_eplot.png │ │ ├── dcb.gif │ │ ├── dcb_test.png │ │ ├── dcb_test_dark_theme.png │ │ ├── dcb_test_light_theme.png │ │ ├── devcontainer │ │ │ ├── codespace_main.png │ │ │ └── open_codespaces.png │ │ ├── eplot_vtk.png │ │ ├── examples_main_page │ │ │ ├── academic.png │ │ │ ├── developer.png │ │ │ ├── extended.gif │ │ │ ├── geometry.png │ │ │ ├── misc.png │ │ │ ├── pymapdl.png │ │ │ ├── showcase.png │ │ │ └── vm.png │ │ ├── lathe_cutter_model.png │ │ ├── lplot_vtk.png │ │ ├── manifold.gif │ │ ├── manifold_boundary_conditions.png │ │ ├── model_solenoid_2d.png │ │ ├── multiblock_pic1.png │ │ ├── multiblock_pic2.png │ │ ├── multiblock_pic3.png │ │ ├── post_norm_disp.png │ │ ├── rst_structure.png │ │ ├── unified_install_2019R1.jpg │ │ └── vplot_vtk.png │ ├── index.rst │ ├── links.rst │ ├── mapdl_commands │ │ ├── .fake │ │ ├── apdl │ │ │ ├── abbreviations.rst │ │ │ ├── array_parameters.rst │ │ │ ├── encryption_decryption.rst │ │ │ ├── index.rst │ │ │ ├── macro_files.rst │ │ │ ├── matrix_operations.rst │ │ │ ├── parameter_definition.rst │ │ │ └── process_controls.rst │ │ ├── aux12 │ │ │ ├── general_radiation.rst │ │ │ ├── index.rst │ │ │ ├── radiation_matrix_method.rst │ │ │ └── radiosity_solver.rst │ │ ├── aux15 │ │ │ ├── iges.rst │ │ │ └── index.rst │ │ ├── aux2 │ │ │ ├── binary_file_dump.rst │ │ │ ├── binary_file_manipulation.rst │ │ │ └── index.rst │ │ ├── aux3 │ │ │ ├── index.rst │ │ │ └── results_files.rst │ │ ├── conn.rst │ │ ├── database │ │ │ ├── components.rst │ │ │ ├── coordinate_system.rst │ │ │ ├── index.rst │ │ │ ├── picking.rst │ │ │ ├── selecting.rst │ │ │ ├── set_up.rst │ │ │ └── working_plane.rst │ │ ├── graphics │ │ │ ├── annotation.rst │ │ │ ├── graphs.rst │ │ │ ├── index.rst │ │ │ ├── labeling.rst │ │ │ ├── scaling.rst │ │ │ ├── set_up.rst │ │ │ ├── style.rst │ │ │ └── views.rst │ │ ├── index.rst │ │ ├── inqfun.rst │ │ ├── map │ │ │ ├── index.rst │ │ │ └── pressure_mapping.rst │ │ ├── misc.rst │ │ ├── post1 │ │ │ ├── _fatigue.rst │ │ │ ├── _special_purpose.rst │ │ │ ├── animation.rst │ │ │ ├── controls.rst │ │ │ ├── element_table.rst │ │ │ ├── failure_criteria.rst │ │ │ ├── index.rst │ │ │ ├── listing.rst │ │ │ ├── load_case_calculations.rst │ │ │ ├── magnetics_calculations.rst │ │ │ ├── path_operations.rst │ │ │ ├── results.rst │ │ │ ├── set_up.rst │ │ │ ├── special_purpose.rst │ │ │ ├── status.rst │ │ │ ├── surface_operations.rst │ │ │ └── trace_points.rst │ │ ├── post26 │ │ │ ├── _set_up.rst │ │ │ ├── controls.rst │ │ │ ├── display.rst │ │ │ ├── index.rst │ │ │ ├── listing.rst │ │ │ ├── operations.rst │ │ │ ├── set_up.rst │ │ │ ├── special_purpose.rst │ │ │ └── status.rst │ │ ├── prep7 │ │ │ ├── areas.rst │ │ │ ├── artificially_matched_layers.rst │ │ │ ├── booleans.rst │ │ │ ├── constraint_equations.rst │ │ │ ├── coupled_dof.rst │ │ │ ├── database.rst │ │ │ ├── digitizing.rst │ │ │ ├── element_type.rst │ │ │ ├── elements.rst │ │ │ ├── explicit_dynamics.rst │ │ │ ├── hard_points.rst │ │ │ ├── keypoints.rst │ │ │ ├── lines.rst │ │ │ ├── material_data_tables.rst │ │ │ ├── materials.rst │ │ │ ├── meshing.rst │ │ │ ├── morphing.rst │ │ │ ├── nodes.rst │ │ │ ├── primitives.rst │ │ │ ├── real_constants.rst │ │ │ ├── sections.rst │ │ │ ├── special_purpose.rst │ │ │ ├── status.rst │ │ │ ├── superelements.rst │ │ │ └── volumes.rst │ │ ├── session │ │ │ ├── files.rst │ │ │ ├── index.rst │ │ │ ├── list_controls.rst │ │ │ ├── processor_entry.rst │ │ │ └── run_controls.rst │ │ └── solution │ │ │ ├── 2d_to_3d_analysis.rst │ │ │ ├── analysis_options.rst │ │ │ ├── birth_and_death.rst │ │ │ ├── dynamic_options.rst │ │ │ ├── fe_body_loads.rst │ │ │ ├── fe_constraints.rst │ │ │ ├── fe_forces.rst │ │ │ ├── fe_surface_loads.rst │ │ │ ├── gap_conditions.rst │ │ │ ├── inertia.rst │ │ │ ├── load_step_operations.rst │ │ │ ├── load_step_options.rst │ │ │ ├── master_dof.rst │ │ │ ├── miscellaneous_loads.rst │ │ │ ├── multi_field_solver_convergence_controls.rst │ │ │ ├── multi_field_solver_definition_commands.rst │ │ │ ├── multi_field_solver_global_controls.rst │ │ │ ├── multi_field_solver_interface_mapping.rst │ │ │ ├── multi_field_solver_load_transfer.rst │ │ │ ├── multi_field_solver_time_controls.rst │ │ │ ├── nonlinear_options.rst │ │ │ ├── ocean.rst │ │ │ ├── radiosity.rst │ │ │ ├── rezoning.rst │ │ │ ├── solid_body_loads.rst │ │ │ ├── solid_constraints.rst │ │ │ ├── solid_forces.rst │ │ │ ├── solid_surface_loads.rst │ │ │ ├── solution_status.rst │ │ │ └── spectrum_options.rst │ ├── substitutions.rst │ └── user_guide │ │ ├── cli.rst │ │ ├── components.rst │ │ ├── convert.rst │ │ ├── database.rst │ │ ├── hpc │ │ ├── examples.rst │ │ ├── introduction.rst │ │ ├── launch_mapdl_entrypoint.rst │ │ ├── pymapdl.rst │ │ ├── settings.rst │ │ └── troubleshooting.rst │ │ ├── index.rst │ │ ├── krylov.rst │ │ ├── lic_guide.pdf │ │ ├── mapdl.rst │ │ ├── math.rst │ │ ├── mesh_geometry.rst │ │ ├── parameters.rst │ │ ├── plotting.rst │ │ ├── pool.rst │ │ ├── post.rst │ │ ├── troubleshoot.rst │ │ └── xpl.rst ├── styles │ ├── .gitignore │ └── config │ │ └── vocabularies │ │ └── ANSYS │ │ ├── accept.txt │ │ └── reject.txt └── webserver.sh ├── docker ├── .dockerignore ├── Dockerfile ├── docker-compose.yml └── make_container.rst ├── examples ├── .vale.ini ├── 00-mapdl-examples │ ├── 2d_magnetostatic_solenoid-BodyFlux_Averaging.py │ ├── 2d_plate_with_a_hole.py │ ├── 2d_pressure_vessel.py │ ├── 3d_notch.py │ ├── 3d_plate_thermal.py │ ├── README.txt │ ├── acoustic_analysis.py │ ├── basic_dpf_example.py │ ├── beam_with_report.py │ ├── bracket_static.py │ ├── composite_dcb.py │ ├── contact_elements.py │ ├── cyclic_analysis.py │ ├── cyclic_static.py │ ├── exhaust_manifold_thermal_stress.py │ ├── geometry.py │ ├── lathe_cutter.py │ ├── mapdl_3d_beam.py │ ├── mapdl_beam.py │ ├── modal_beam.py │ ├── path_operations.py │ ├── pressure_vessel.py │ ├── psd-vm203.py │ ├── pyvista_mesh.py │ ├── slashmap_cfx_mapping.py │ ├── spotweld.py │ ├── torsional_load.py │ └── transient_thermal.py ├── 01-geometry │ ├── 00-keypoints.py │ ├── 01-lines.py │ ├── 02-areas.py │ ├── 03-volumes.py │ ├── 04-primitives.py │ └── README.txt ├── 02-tips-n-tricks │ ├── 00-example-template.py │ ├── 01-smoothing-element-size-transitions.py │ ├── 03-using_inline_functions_and_Query.py │ ├── 04-rotational-displacement.py │ ├── 05-explore_mapdl_files.py │ ├── 06-convert-apdl-to-pymapdl.py │ └── README.txt ├── 03-general-fea │ ├── 00-how_finite_element_works.py │ └── README.txt └── README.txt ├── minimum_requirements.txt ├── pyproject.toml ├── src └── ansys │ └── mapdl │ └── core │ ├── __init__.py │ ├── _commands │ ├── __init__.py │ ├── apdl │ │ ├── __init__.py │ │ ├── abbreviations.py │ │ ├── array_parameters.py │ │ ├── encryption_decryption.py │ │ ├── macro_files.py │ │ ├── matrix_operations.py │ │ ├── parameter_definition.py │ │ └── process_controls.py │ ├── aux12 │ │ ├── __init__.py │ │ ├── general_radiation.py │ │ ├── radiation_matrix_method.py │ │ └── radiosity_solver.py │ ├── aux15 │ │ ├── __init__.py │ │ └── iges.py │ ├── aux2 │ │ ├── __init__.py │ │ ├── binary_file_dump.py │ │ └── binary_file_manipulation.py │ ├── aux3 │ │ ├── __init__.py │ │ └── results_files.py │ ├── conn.py │ ├── database │ │ ├── __init__.py │ │ ├── components.py │ │ ├── coordinate_system.py │ │ ├── picking.py │ │ ├── selecting.py │ │ ├── set_up.py │ │ └── working_plane.py │ ├── graphics │ │ ├── __init__.py │ │ ├── annotation.py │ │ ├── graphs.py │ │ ├── labeling.py │ │ ├── scaling.py │ │ ├── set_up.py │ │ ├── style.py │ │ └── views.py │ ├── hidden.py │ ├── inq_func.py │ ├── map │ │ ├── __init__.py │ │ └── pressure_mapping.py │ ├── misc │ │ ├── __init__.py │ │ └── misc.py │ ├── parse.py │ ├── post1 │ │ ├── __init__.py │ │ ├── _fatigue.py │ │ ├── _special_purpose.py │ │ ├── animation.py │ │ ├── controls.py │ │ ├── element_table.py │ │ ├── failure_criteria.py │ │ ├── listing.py │ │ ├── load_case_calculations.py │ │ ├── magnetics_calculations.py │ │ ├── path_operations.py │ │ ├── results.py │ │ ├── set_up.py │ │ ├── special_purpose.py │ │ ├── status.py │ │ ├── surface_operations.py │ │ └── trace_points.py │ ├── post26 │ │ ├── __init__.py │ │ ├── _set_up.py │ │ ├── controls.py │ │ ├── display.py │ │ ├── listing.py │ │ ├── operations.py │ │ ├── set_up.py │ │ ├── special_purpose.py │ │ └── status.py │ ├── preproc │ │ ├── __init__.py │ │ ├── areas.py │ │ ├── artificially_matched_layers.py │ │ ├── booleans.py │ │ ├── constraint_equations.py │ │ ├── coupled_dof.py │ │ ├── database.py │ │ ├── digitizing.py │ │ ├── element_type.py │ │ ├── elements.py │ │ ├── explicit_dynamics.py │ │ ├── hard_points.py │ │ ├── keypoints.py │ │ ├── lines.py │ │ ├── material_data_tables.py │ │ ├── materials.py │ │ ├── meshing.py │ │ ├── morphing.py │ │ ├── nodes.py │ │ ├── primitives.py │ │ ├── real_constants.py │ │ ├── sections.py │ │ ├── special_purpose.py │ │ ├── status.py │ │ ├── superelements.py │ │ └── volumes.py │ ├── session │ │ ├── __init__.py │ │ ├── files.py │ │ ├── list_controls.py │ │ ├── processor_entry.py │ │ └── run_controls.py │ └── solution │ │ ├── __init__.py │ │ ├── all_others.py │ │ ├── analysis_options.py │ │ ├── birth_and_death.py │ │ ├── dynamic_options.py │ │ ├── fe_body_loads.py │ │ ├── fe_constraints.py │ │ ├── fe_forces.py │ │ ├── fe_surface_loads.py │ │ ├── gap_conditions.py │ │ ├── inertia.py │ │ ├── load_step_operations.py │ │ ├── load_step_options.py │ │ ├── master_dof.py │ │ ├── miscellaneous_loads.py │ │ ├── multi_field_solver_convergence_controls.py │ │ ├── multi_field_solver_definition_commands.py │ │ ├── multi_field_solver_global_controls.py │ │ ├── multi_field_solver_interface_mapping.py │ │ ├── multi_field_solver_load_transfer.py │ │ ├── multi_field_solver_time_controls.py │ │ ├── nonlinear_options.py │ │ ├── ocean.py │ │ ├── radiosity.py │ │ ├── rezoning.py │ │ ├── solid_body_loads.py │ │ ├── solid_constraints.py │ │ ├── solid_forces.py │ │ ├── solid_surface_loads.py │ │ ├── solution_status.py │ │ ├── spectrum_options.py │ │ └── twod_to_3d_analysis.py │ ├── _version.py │ ├── cli │ ├── __init__.py │ ├── convert.py │ ├── core.py │ ├── list_instances.py │ ├── start.py │ └── stop.py │ ├── commands.py │ ├── common_grpc.py │ ├── component.py │ ├── convert.py │ ├── database │ ├── __init__.py │ ├── database.py │ ├── elems.py │ └── nodes.py │ ├── errors.py │ ├── examples │ ├── __init__.py │ ├── downloads.py │ ├── examples.py │ ├── verif │ │ ├── VM228-1.iges │ │ ├── VM228-2.iges │ │ ├── VM233.IGES │ │ ├── vm-nr1677-01-1a.dat │ │ ├── vm-nr1677-01-2a.dat │ │ ├── vm-nr1677-01-3a.dat │ │ ├── vm-nr1677-01-4a.dat │ │ ├── vm-nr1677-01-5a.dat │ │ ├── vm-nr1677-01-6a.dat │ │ ├── vm-nr1677-01-7a.dat │ │ ├── vm-nr1677-02-1a.dat │ │ ├── vm-nr1677-02-1b.dat │ │ ├── vm-nr1677-02-1c.dat │ │ ├── vm-nr1677-02-2a.dat │ │ ├── vm-nr1677-02-2b.dat │ │ ├── vm-nr1677-02-2c.dat │ │ ├── vm-nr1677-02-3a.dat │ │ ├── vm-nr1677-02-3b.dat │ │ ├── vm-nr1677-02-3c.dat │ │ ├── vm-nr1677-02-4a.dat │ │ ├── vm-nr1677-02-4c.dat │ │ ├── vm-nr1677-1-1a-a.dat │ │ ├── vm-nr1677-1-2a-a.dat │ │ ├── vm-nr1677-1-3a-a.dat │ │ ├── vm-nr1677-1-4a-a.dat │ │ ├── vm-nr1677-1-5a-a.dat │ │ ├── vm-nr1677-1-6a-a.dat │ │ ├── vm-nr1677-1-7a-a.dat │ │ ├── vm-nr1677-2-1a-a.dat │ │ ├── vm-nr1677-2-1b-a.dat │ │ ├── vm-nr1677-2-1c-a.dat │ │ ├── vm-nr1677-2-2a-a.dat │ │ ├── vm-nr1677-2-2b-a.dat │ │ ├── vm-nr1677-2-2c-a.dat │ │ ├── vm-nr1677-2-3a-a.dat │ │ ├── vm-nr1677-2-3b-a.dat │ │ ├── vm-nr1677-2-3c-a.dat │ │ ├── vm-nr1677-2-4a-a.dat │ │ ├── vm-nr1677-2-4c-a.dat │ │ ├── vm-nr6645-01-1a.dat │ │ ├── vm-nr6645-01-2a.dat │ │ ├── vm-nr6645-1-1a-a.dat │ │ ├── vm-nr6645-1-2a-a.dat │ │ ├── vm1.dat │ │ ├── vm10.dat │ │ ├── vm100.dat │ │ ├── vm101.dat │ │ ├── vm102.dat │ │ ├── vm103.dat │ │ ├── vm104.dat │ │ ├── vm105.dat │ │ ├── vm106.dat │ │ ├── vm107.dat │ │ ├── vm108.dat │ │ ├── vm109.dat │ │ ├── vm11.dat │ │ ├── vm110.dat │ │ ├── vm111.dat │ │ ├── vm112.dat │ │ ├── vm113.dat │ │ ├── vm114.dat │ │ ├── vm115.dat │ │ ├── vm116.dat │ │ ├── vm117.dat │ │ ├── vm118.dat │ │ ├── vm119.dat │ │ ├── vm12.dat │ │ ├── vm120.dat │ │ ├── vm121.dat │ │ ├── vm122.dat │ │ ├── vm123.dat │ │ ├── vm124.dat │ │ ├── vm125.dat │ │ ├── vm126.dat │ │ ├── vm127.dat │ │ ├── vm128.dat │ │ ├── vm129.dat │ │ ├── vm13.dat │ │ ├── vm130.dat │ │ ├── vm131.dat │ │ ├── vm132.dat │ │ ├── vm133.dat │ │ ├── vm134.dat │ │ ├── vm135.dat │ │ ├── vm136.dat │ │ ├── vm137.dat │ │ ├── vm138.dat │ │ ├── vm139.dat │ │ ├── vm14.dat │ │ ├── vm140.dat │ │ ├── vm141.dat │ │ ├── vm142.dat │ │ ├── vm143.dat │ │ ├── vm144.dat │ │ ├── vm145.dat │ │ ├── vm146.dat │ │ ├── vm147.dat │ │ ├── vm148.dat │ │ ├── vm149.dat │ │ ├── vm15.dat │ │ ├── vm150.dat │ │ ├── vm151.dat │ │ ├── vm152.dat │ │ ├── vm153.dat │ │ ├── vm154.dat │ │ ├── vm155.dat │ │ ├── vm156.dat │ │ ├── vm157.dat │ │ ├── vm158.dat │ │ ├── vm159.dat │ │ ├── vm16.dat │ │ ├── vm160.dat │ │ ├── vm161.dat │ │ ├── vm162.dat │ │ ├── vm163.dat │ │ ├── vm164.dat │ │ ├── vm165.dat │ │ ├── vm166.dat │ │ ├── vm167.dat │ │ ├── vm168.dat │ │ ├── vm169.dat │ │ ├── vm17.dat │ │ ├── vm170.dat │ │ ├── vm171.dat │ │ ├── vm172.dat │ │ ├── vm173.dat │ │ ├── vm174.dat │ │ ├── vm175.dat │ │ ├── vm176.dat │ │ ├── vm177.dat │ │ ├── vm178.dat │ │ ├── vm179.dat │ │ ├── vm18.dat │ │ ├── vm180.dat │ │ ├── vm181.dat │ │ ├── vm182.dat │ │ ├── vm183.dat │ │ ├── vm184.dat │ │ ├── vm185.dat │ │ ├── vm186.dat │ │ ├── vm187.dat │ │ ├── vm188.dat │ │ ├── vm189.dat │ │ ├── vm19.dat │ │ ├── vm190.dat │ │ ├── vm191.dat │ │ ├── vm192.dat │ │ ├── vm193.dat │ │ ├── vm194.dat │ │ ├── vm195.dat │ │ ├── vm196.dat │ │ ├── vm197.dat │ │ ├── vm198.dat │ │ ├── vm199.dat │ │ ├── vm2.dat │ │ ├── vm20.dat │ │ ├── vm200.dat │ │ ├── vm201.dat │ │ ├── vm202.dat │ │ ├── vm203.dat │ │ ├── vm204.dat │ │ ├── vm205.dat │ │ ├── vm206.dat │ │ ├── vm207.dat │ │ ├── vm208.dat │ │ ├── vm209.dat │ │ ├── vm21.dat │ │ ├── vm210.dat │ │ ├── vm211.dat │ │ ├── vm212.dat │ │ ├── vm213.dat │ │ ├── vm214.dat │ │ ├── vm215.dat │ │ ├── vm216.dat │ │ ├── vm217.dat │ │ ├── vm218.dat │ │ ├── vm219.dat │ │ ├── vm22.dat │ │ ├── vm220.dat │ │ ├── vm221.dat │ │ ├── vm222.dat │ │ ├── vm223.dat │ │ ├── vm224.dat │ │ ├── vm225.dat │ │ ├── vm226.dat │ │ ├── vm227.dat │ │ ├── vm228.dat │ │ ├── vm229.dat │ │ ├── vm23.dat │ │ ├── vm230.dat │ │ ├── vm231.dat │ │ ├── vm232.dat │ │ ├── vm233.dat │ │ ├── vm234.dat │ │ ├── vm235.dat │ │ ├── vm236.dat │ │ ├── vm237.dat │ │ ├── vm238.dat │ │ ├── vm239.dat │ │ ├── vm24.dat │ │ ├── vm240.dat │ │ ├── vm241.dat │ │ ├── vm242.dat │ │ ├── vm243.dat │ │ ├── vm244.dat │ │ ├── vm245.dat │ │ ├── vm246.dat │ │ ├── vm247.dat │ │ ├── vm248.dat │ │ ├── vm249.dat │ │ ├── vm25.dat │ │ ├── vm250.dat │ │ ├── vm251.dat │ │ ├── vm252.dat │ │ ├── vm253.dat │ │ ├── vm254.dat │ │ ├── vm255.dat │ │ ├── vm256.dat │ │ ├── vm257.dat │ │ ├── vm258.dat │ │ ├── vm259.dat │ │ ├── vm26.dat │ │ ├── vm260.dat │ │ ├── vm261.dat │ │ ├── vm262.dat │ │ ├── vm263.dat │ │ ├── vm264.dat │ │ ├── vm265.dat │ │ ├── vm266.dat │ │ ├── vm267.dat │ │ ├── vm268.dat │ │ ├── vm269.dat │ │ ├── vm27.dat │ │ ├── vm270.dat │ │ ├── vm271.dat │ │ ├── vm272.dat │ │ ├── vm273.dat │ │ ├── vm274.dat │ │ ├── vm275.dat │ │ ├── vm276.dat │ │ ├── vm277.dat │ │ ├── vm278.dat │ │ ├── vm279.dat │ │ ├── vm28.dat │ │ ├── vm280.dat │ │ ├── vm281.dat │ │ ├── vm282.dat │ │ ├── vm283.dat │ │ ├── vm284.dat │ │ ├── vm285.dat │ │ ├── vm286.dat │ │ ├── vm287.dat │ │ ├── vm288.dat │ │ ├── vm289.dat │ │ ├── vm29.dat │ │ ├── vm290.dat │ │ ├── vm291.dat │ │ ├── vm292.dat │ │ ├── vm293.dat │ │ ├── vm294.dat │ │ ├── vm295.dat │ │ ├── vm296.dat │ │ ├── vm297.dat │ │ ├── vm298.dat │ │ ├── vm299.dat │ │ ├── vm3.dat │ │ ├── vm30.dat │ │ ├── vm300.dat │ │ ├── vm301.dat │ │ ├── vm302.dat │ │ ├── vm303.dat │ │ ├── vm304.dat │ │ ├── vm305.dat │ │ ├── vm306.dat │ │ ├── vm307.dat │ │ ├── vm308.dat │ │ ├── vm309.dat │ │ ├── vm31.dat │ │ ├── vm310.dat │ │ ├── vm311.dat │ │ ├── vm312.dat │ │ ├── vm313.dat │ │ ├── vm314.dat │ │ ├── vm315.dat │ │ ├── vm316.dat │ │ ├── vm317.dat │ │ ├── vm318.dat │ │ ├── vm319.dat │ │ ├── vm32.dat │ │ ├── vm320.dat │ │ ├── vm33.dat │ │ ├── vm34.dat │ │ ├── vm35.dat │ │ ├── vm36.dat │ │ ├── vm37.dat │ │ ├── vm38.dat │ │ ├── vm39.dat │ │ ├── vm4.dat │ │ ├── vm40.dat │ │ ├── vm41.dat │ │ ├── vm42.dat │ │ ├── vm43.dat │ │ ├── vm44.dat │ │ ├── vm45.dat │ │ ├── vm46.dat │ │ ├── vm47.dat │ │ ├── vm48.dat │ │ ├── vm49.dat │ │ ├── vm5.dat │ │ ├── vm50.dat │ │ ├── vm51.dat │ │ ├── vm52.dat │ │ ├── vm53.dat │ │ ├── vm54.dat │ │ ├── vm55.dat │ │ ├── vm56.dat │ │ ├── vm57.dat │ │ ├── vm58.dat │ │ ├── vm59.dat │ │ ├── vm6.dat │ │ ├── vm60.dat │ │ ├── vm61.dat │ │ ├── vm62.dat │ │ ├── vm63.dat │ │ ├── vm64.dat │ │ ├── vm65.dat │ │ ├── vm66.dat │ │ ├── vm67.dat │ │ ├── vm68.dat │ │ ├── vm69.dat │ │ ├── vm7.dat │ │ ├── vm70.dat │ │ ├── vm71.dat │ │ ├── vm72.dat │ │ ├── vm73.dat │ │ ├── vm74.dat │ │ ├── vm75.dat │ │ ├── vm76.dat │ │ ├── vm77.dat │ │ ├── vm78.dat │ │ ├── vm79.dat │ │ ├── vm8.dat │ │ ├── vm80.dat │ │ ├── vm81.dat │ │ ├── vm82.dat │ │ ├── vm83.dat │ │ ├── vm84.dat │ │ ├── vm85.dat │ │ ├── vm86.dat │ │ ├── vm87.dat │ │ ├── vm88.dat │ │ ├── vm89.dat │ │ ├── vm9.dat │ │ ├── vm90.dat │ │ ├── vm91.dat │ │ ├── vm92.dat │ │ ├── vm93.dat │ │ ├── vm94.dat │ │ ├── vm95.dat │ │ ├── vm96.dat │ │ ├── vm97.dat │ │ ├── vm98.dat │ │ ├── vm99.dat │ │ ├── vmc1.dat │ │ ├── vmc2.dat │ │ ├── vmc3.dat │ │ ├── vmc4.dat │ │ ├── vmc5.dat │ │ ├── vmc6.dat │ │ ├── vmc7.dat │ │ ├── vmc8.dat │ │ ├── vmd1.dat │ │ ├── vmd2.dat │ │ ├── vmd3.dat │ │ ├── vme1.dat │ │ ├── vme2.dat │ │ ├── vme3.dat │ │ ├── vme4.dat │ │ ├── vme5.dat │ │ ├── vme6.dat │ │ ├── vmfebsta-le1-181.dat │ │ ├── vmfebsta-le5-181.dat │ │ ├── vmfebsta-le5-281.dat │ │ ├── vmlsb2-le11-185.dat │ │ ├── vmlsb2-le11-186.dat │ │ ├── vmlsb2-le8-208.dat │ │ ├── vmlsb2-le8-209.dat │ │ ├── vmlsb2-le9-208.dat │ │ ├── vmlsb2-le9-209.dat │ │ ├── vmp09-t12-181.dat │ │ ├── vmp09-t12-281.dat │ │ ├── vmp09-t15-181.dat │ │ ├── vmp09-t15-281.dat │ │ ├── vmp09-t2-188.dat │ │ ├── vmp09-t2-189.dat │ │ ├── vmp09-t33-182.dat │ │ ├── vmp09-t33-183.dat │ │ ├── vmp09-t4-188.dat │ │ ├── vmp09-t4-189.dat │ │ ├── vmp09-t5-188.dat │ │ ├── vmp09-t5-189.dat │ │ ├── vmp09-t52-181.dat │ │ ├── vmp09-t52-185.dat │ │ ├── vmp09-t52-186.dat │ │ ├── vmp09-t52-187.dat │ │ ├── vmp09-t52-281.dat │ │ ├── vmr020-t1a-183.dat │ │ ├── vmr020-t1b-183.dat │ │ ├── vmr020-t2a-183.dat │ │ ├── vmr020-t2b-183.dat │ │ ├── vmr020-t3a-183.dat │ │ ├── vmr020-t3b-183.dat │ │ ├── vmr020-t3c-183.dat │ │ ├── vmr020-t4a-183.dat │ │ ├── vmr020-t4b-183.dat │ │ ├── vmr020-t5a-183.dat │ │ ├── vmr020-t6a-183.dat │ │ ├── vmr020-t8a-183.dat │ │ ├── vmr020-t8b-183.dat │ │ ├── vmr027-cr10a-181.dat │ │ ├── vmr027-cr10a-182.dat │ │ ├── vmr027-cr10a-183.dat │ │ ├── vmr027-cr10a-281.dat │ │ ├── vmr027-cr10b-181.dat │ │ ├── vmr027-cr10b-182.dat │ │ ├── vmr027-cr10b-183.dat │ │ ├── vmr027-cr10b-281.dat │ │ ├── vmr027-cr10c-181.dat │ │ ├── vmr027-cr10c-182.dat │ │ ├── vmr027-cr10c-183.dat │ │ ├── vmr027-cr10c-281.dat │ │ ├── vmr027-cr12b-181.dat │ │ ├── vmr027-cr12b-182.dat │ │ ├── vmr027-cr12b-183.dat │ │ ├── vmr027-cr12b-281.dat │ │ ├── vmr027-cr12c-181.dat │ │ ├── vmr027-cr12c-182.dat │ │ ├── vmr027-cr12c-183.dat │ │ ├── vmr027-cr12c-281.dat │ │ ├── vmr027-cr3a-181.dat │ │ ├── vmr027-cr3a-182.dat │ │ ├── vmr027-cr3a-183.dat │ │ ├── vmr027-cr3a-281.dat │ │ ├── vmr027-cr3b-181.dat │ │ ├── vmr027-cr3b-182.dat │ │ ├── vmr027-cr3b-183.dat │ │ ├── vmr027-cr3b-281.dat │ │ ├── vmr027-cr4c-181.dat │ │ ├── vmr027-cr4c-182.dat │ │ ├── vmr027-cr4c-183.dat │ │ ├── vmr027-cr4c-281.dat │ │ ├── vmr027-cr5b-182.dat │ │ ├── vmr027-cr5b-183.dat │ │ ├── vmr027-cr6b-185.dat │ │ ├── vmr027-cr6b-186.dat │ │ ├── vmr027-cr6b-187.dat │ │ ├── vmr029-t1-181.dat │ │ ├── vmr029-t1-185.dat │ │ ├── vmr029-t1-188.dat │ │ ├── vmr029-t1-189.dat │ │ ├── vmr029-t1-190.dat │ │ ├── vmr029-t1-281.dat │ │ ├── vmr029-t4-181.dat │ │ ├── vmr029-t4-185.dat │ │ ├── vmr029-t4-188.dat │ │ ├── vmr029-t4-189.dat │ │ ├── vmr029-t4-190.dat │ │ ├── vmr029-t4-281.dat │ │ ├── vmr029-t5-185.dat │ │ ├── vmr029-t5-188.dat │ │ ├── vmr029-t5-189.dat │ │ ├── vmr029-t5-190.dat │ │ ├── vmr029-t7-181.dat │ │ ├── vmr029-t7-185.dat │ │ ├── vmr029-t7-190.dat │ │ ├── vmr029-t7-281.dat │ │ ├── vmr029-t9-181.dat │ │ ├── vmr029-t9-185.dat │ │ ├── vmr029-t9-190.dat │ │ ├── vmr029-t9-281.dat │ │ ├── vmr031-t1-281.dat │ │ ├── vmr031-t2-281.dat │ │ ├── vmr031-t3-181.dat │ │ ├── vmr031-t3-281.dat │ │ ├── vmr049-cr1a-181.dat │ │ ├── vmr049-cr1a-182.dat │ │ ├── vmr049-cr1a-183.dat │ │ ├── vmr049-cr1a-281.dat │ │ ├── vmr049-cr1b-181.dat │ │ ├── vmr049-cr1b-182.dat │ │ ├── vmr049-cr1b-183.dat │ │ ├── vmr049-cr1b-281.dat │ │ ├── vmr049-cr1c-181.dat │ │ ├── vmr049-cr1c-182.dat │ │ ├── vmr049-cr1c-183.dat │ │ ├── vmr049-cr1c-281.dat │ │ ├── vmr049-cr2-181.dat │ │ ├── vmr049-cr2-182.dat │ │ ├── vmr049-cr2-183.dat │ │ ├── vmr049-cr2-185.dat │ │ ├── vmr049-cr2-187.dat │ │ ├── vmr049-cr2-281.dat │ │ ├── vmr049-cr3-181.dat │ │ ├── vmr049-cr3-182.dat │ │ ├── vmr049-cr3-183.dat │ │ ├── vmr049-cr3-281.dat │ │ ├── vmr049-cr4-182.dat │ │ ├── vmr049-cr4-183.dat │ │ ├── vmr049-cr5-185.dat │ │ ├── vmr049-cr5-186.dat │ │ ├── vmr049-cr5-187.dat │ │ ├── vmr049-cr6-182.dat │ │ ├── vmr049-cr6-183.dat │ │ ├── vmr049-pl1a-182.dat │ │ ├── vmr049-pl1a-183.dat │ │ ├── vmr049-pl1b-182.dat │ │ ├── vmr049-pl1b-183.dat │ │ ├── vmr049-pl2a-181.dat │ │ ├── vmr049-pl2a-182.dat │ │ ├── vmr049-pl2a-183.dat │ │ ├── vmr049-pl2a-281.dat │ │ ├── vmr049-pl2b-181.dat │ │ ├── vmr049-pl2b-182.dat │ │ ├── vmr049-pl2b-281.dat │ │ ├── vmr049-pl3a-185.dat │ │ ├── vmr049-pl3a-186.dat │ │ ├── vmr049-pl3a-187.dat │ │ ├── vmr049-pl3b-185.dat │ │ ├── vmr049-pl3b-186.dat │ │ ├── vmr049-pl3b-187.dat │ │ ├── vmr049-pl3b-190.dat │ │ ├── vmr049-pl5a-182.dat │ │ ├── vmr049-pl5a-183.dat │ │ ├── vmr049-pl5b-182.dat │ │ ├── vmr049-pl5b-183.dat │ │ ├── vmr083-ca1-221.dat │ │ └── vmr083-ca2-221.dat │ ├── verif_files.py │ └── wing.dat │ ├── helpers.py │ ├── information.py │ ├── inline_functions │ ├── __init__.py │ ├── component_queries.py │ ├── connectivity_queries.py │ ├── core.py │ ├── geometry_queries.py │ ├── inline_functions.py │ ├── line_queries.py │ ├── nearest_queries.py │ ├── normals_queries.py │ ├── scalar_queries.py │ └── selection_queries.py │ ├── jupyter.py │ ├── krylov.py │ ├── launcher.py │ ├── licensing.py │ ├── logging.py │ ├── mapdl.py │ ├── mapdl_console.py │ ├── mapdl_core.py │ ├── mapdl_extended.py │ ├── mapdl_geometry.py │ ├── mapdl_grpc.py │ ├── mapdl_inprocess.py │ ├── mapdl_types.py │ ├── mesh │ ├── __init__.py │ └── mesh.py │ ├── mesh_grpc.py │ ├── misc.py │ ├── parameters.py │ ├── plotting │ ├── __init__.py │ ├── consts.py │ ├── plotting_defaults.py │ ├── theme.py │ └── visualizer.py │ ├── pool.py │ ├── post.py │ ├── reader │ ├── __init__.py │ ├── constants.py │ ├── core.py │ ├── data.py │ ├── plotting.py │ └── types.py │ ├── report.py │ ├── solution.py │ └── xpl.py ├── tests ├── .image_cache │ ├── all_same_values.png │ ├── aplot.png │ ├── aplot[False].png │ ├── aplot[False]_1.png │ ├── aplot[False]_2.png │ ├── aplot[False]_3.png │ ├── aplot[None].png │ ├── aplot[None]_1.png │ ├── aplot[None]_2.png │ ├── aplot[None]_3.png │ ├── aplot[True].png │ ├── aplot[True]_1.png │ ├── aplot[True]_2.png │ ├── aplot[True]_3.png │ ├── aplot_1.png │ ├── aplot_2.png │ ├── aplot_3.png │ ├── background.png │ ├── bc_bc_labels.png │ ├── bc_bc_labels_1.png │ ├── bc_glyph.png │ ├── bc_only_one_node.png │ ├── bc_plot_bc_labels[CSGZ].png │ ├── bc_plot_bc_labels[Mechanical].png │ ├── bc_plot_bc_labels[bc_labels0].png │ ├── bc_plot_bc_labels[bc_labels1].png │ ├── bc_plot_bc_labels[bc_labels2].png │ ├── bc_plot_bc_labels[bc_labels3].png │ ├── bc_plot_bc_labels[bc_labels4].png │ ├── bc_plot_bc_labels[bc_labels5].png │ ├── bc_plot_bc_labels[bc_labels6].png │ ├── bc_plot_bc_labels[ux].png │ ├── bc_plot_bc_target[Nodes].png │ ├── bc_plot_bc_target[bc_target0].png │ ├── bc_plot_bc_target[bc_target1].png │ ├── bc_plot_options[False-False-False].png │ ├── bc_plot_options[False-False-True].png │ ├── bc_plot_options[False-True-False].png │ ├── bc_plot_options[False-True-True].png │ ├── bc_plot_options[True-False-False].png │ ├── bc_plot_options[True-False-True].png │ ├── bc_plot_options[True-True-False].png │ ├── bc_plot_options[True-True-True].png │ ├── bc_plot_options_fields[loads0-field0].png │ ├── bc_plot_options_fields[loads0-field1].png │ ├── bc_plot_options_fields[loads0-field2].png │ ├── bc_plot_options_fields[loads0-field3].png │ ├── bc_plot_options_fields[loads0-field4].png │ ├── bc_plot_options_fields[loads0-field5].png │ ├── bc_plot_options_fields[loads1-field0].png │ ├── bc_plot_options_fields[loads1-field1].png │ ├── bc_plot_options_fields[loads1-field2].png │ ├── bc_plot_options_fields[loads1-field3].png │ ├── bc_plot_options_fields[loads1-field4].png │ ├── bc_plot_options_fields[loads1-field5].png │ ├── bc_plot_options_fields[loads2-field0].png │ ├── bc_plot_options_fields[loads2-field1].png │ ├── bc_plot_options_fields[loads2-field2].png │ ├── bc_plot_options_fields[loads2-field3].png │ ├── bc_plot_options_fields[loads2-field4].png │ ├── bc_plot_options_fields[loads2-field5].png │ ├── bc_plot_options_fields[loads3-field0].png │ ├── bc_plot_options_fields[loads3-field1].png │ ├── bc_plot_options_fields[loads3-field2].png │ ├── bc_plot_options_fields[loads3-field3].png │ ├── bc_plot_options_fields[loads3-field4].png │ ├── bc_plot_options_fields[loads3-field5].png │ ├── cmplot_all[KP].png │ ├── cmplot_all[NODE].png │ ├── cmplot_individual[AREA].png │ ├── cmplot_individual[ELEM].png │ ├── cmplot_individual[KP].png │ ├── cmplot_individual[LINE].png │ ├── cmplot_individual[NODE].png │ ├── cmplot_individual[VOLU].png │ ├── color_areas.png │ ├── color_areas_individual[color_areas0].png │ ├── color_areas_individual[color_areas1].png │ ├── color_areas_individual[color_areas2].png │ ├── components_selection_keep_between_plots.png │ ├── cpos_input.png │ ├── cuadratic_beam.png │ ├── cuadratic_beam_1.png │ ├── disp_plot[X].png │ ├── disp_plot[Y].png │ ├── disp_plot[norm].png │ ├── disp_plot[z].png │ ├── disp_plot_subselection.png │ ├── elem_disp_plot[NORM].png │ ├── elem_disp_plot[X].png │ ├── elem_disp_plot[Y].png │ ├── elem_disp_plot[Z].png │ ├── eplot.png │ ├── eplot[False].png │ ├── eplot[False]_1.png │ ├── eplot[False]_2.png │ ├── eplot[None].png │ ├── eplot[None]_1.png │ ├── eplot[None]_2.png │ ├── eplot[None]_3.png │ ├── eplot[True].png │ ├── eplot[True]_1.png │ ├── eplot[True]_2.png │ ├── eplot[True]_3.png │ ├── eplot_1.png │ ├── eplot_2.png │ ├── eplot_savefig.png │ ├── general_plotter_returns.png │ ├── general_plotter_returns_1.png │ ├── general_plotter_returns_2.png │ ├── general_plotter_returns_3.png │ ├── kplot.png │ ├── kplot[None].png │ ├── kplot[True].png │ ├── lplot.png │ ├── lplot[None].png │ ├── lplot[True].png │ ├── nplot[None-False].png │ ├── nplot[None-True].png │ ├── nplot[True-False].png │ ├── nplot[True-True].png │ ├── nplot_vtk[False].png │ ├── nplot_vtk[None-False].png │ ├── nplot_vtk[None-True].png │ ├── nplot_vtk[True-False].png │ ├── nplot_vtk[True-True].png │ ├── nplot_vtk[True].png │ ├── pick_nodes[A].png │ ├── pick_nodes[R].png │ ├── pick_nodes[S].png │ ├── pick_nodes[U].png │ ├── plot_element_stress[1].png │ ├── plot_element_stress[EQV].png │ ├── plot_element_stress[INT].png │ ├── plot_element_stress[X].png │ ├── plot_element_temperature.png │ ├── plot_element_values.png │ ├── plot_empty_mesh.png │ ├── plot_empty_mesh_1.png │ ├── plot_incomplete_element_selection.png │ ├── plot_incomplete_nodal_selection.png │ ├── plot_nodal_component_stress.png │ ├── plot_nodal_contact_friction_stress.png │ ├── plot_nodal_elastic_component_strain.png │ ├── plot_nodal_elastic_eqv_strain.png │ ├── plot_nodal_elastic_principal_strain.png │ ├── plot_nodal_elastic_strain_intensity.png │ ├── plot_nodal_eqv_stress.png │ ├── plot_nodal_plastic_component_strain.png │ ├── plot_nodal_plastic_eqv_strain.png │ ├── plot_nodal_plastic_principal_strain.png │ ├── plot_nodal_plastic_strain_intensity.png │ ├── plot_nodal_principal_stress.png │ ├── plot_nodal_principal_total_strain.png │ ├── plot_nodal_stress_intensity.png │ ├── plot_nodal_total_component_strain.png │ ├── plot_nodal_total_eqv_strain.png │ ├── plot_nodal_total_strain_intensity.png │ ├── plot_nodal_values.png │ ├── plot_nodal_values_1.png │ ├── plot_nodal_values_2.png │ ├── plot_pressure.png │ ├── plot_rot[X].png │ ├── plot_rot[Y].png │ ├── plot_rot[z].png │ ├── plot_temperature.png │ ├── plot_voltage.png │ ├── plotter_input.png │ ├── show_bounds.png │ ├── single_glyph[0-CHRG].png │ ├── single_glyph[0-FX].png │ ├── single_glyph[0-FY].png │ ├── single_glyph[0-FZ].png │ ├── single_glyph[0-HEAT].png │ ├── single_glyph[0-TEMP].png │ ├── single_glyph[0-UX].png │ ├── single_glyph[0-UY].png │ ├── single_glyph[0-UZ].png │ ├── single_glyph[0-VOLT].png │ ├── single_glyph[50-CHRG].png │ ├── single_glyph[50-FX].png │ ├── single_glyph[50-FY].png │ ├── single_glyph[50-FZ].png │ ├── single_glyph[50-HEAT].png │ ├── single_glyph[50-TEMP].png │ ├── single_glyph[50-UX].png │ ├── single_glyph[50-UY].png │ ├── single_glyph[50-UZ].png │ ├── single_glyph[50-VOLT].png │ ├── single_glyph[500-CHRG].png │ ├── single_glyph[500-FX].png │ ├── single_glyph[500-FY].png │ ├── single_glyph[500-FZ].png │ ├── single_glyph[500-HEAT].png │ ├── single_glyph[500-TEMP].png │ ├── single_glyph[500-UX].png │ ├── single_glyph[500-UY].png │ ├── single_glyph[500-UZ].png │ ├── single_glyph[500-VOLT].png │ ├── vplot[None].png │ └── vplot[True].png ├── common.py ├── conftest.py ├── test_cli.py ├── test_commands.py ├── test_component.py ├── test_console.py ├── test_convert.py ├── test_database.py ├── test_element.py ├── test_errors.py ├── test_examples.py ├── test_files │ ├── CAD_formats │ │ ├── CubeWithHole.CATPart │ │ ├── CubeWithHole.igs │ │ ├── CubeWithHole.sat │ │ └── CubeWithHole.x_t │ ├── ducati_frame.mac │ ├── full26.dat │ ├── krylov_point_load.cdb │ ├── krylov_pressure_load.cdb │ ├── model_damping.db │ ├── sector.cdb │ ├── static.dat │ └── wing.dat ├── test_geometry.py ├── test_grpc.py ├── test_importing_geometries.py ├── test_information.py ├── test_inline_functions │ ├── test_component_queries.py │ ├── test_connectivity_queries.py │ ├── test_field_component_queries.py │ ├── test_geometry_queries.py │ ├── test_line_component_queries.py │ ├── test_nearest_queries.py │ ├── test_normals_queries.py │ ├── test_query.py │ └── test_selection_queries.py ├── test_inprocess.py ├── test_krylov.py ├── test_launcher.py ├── test_launcher_remote.py ├── test_licensing.py ├── test_logging.py ├── test_mapdl.py ├── test_mapdl_grpc.py ├── test_mesh_grpc.py ├── test_misc.py ├── test_parameters.py ├── test_plotting.py ├── test_pool.py ├── test_post.py ├── test_report.py ├── test_result.py ├── test_solution.py ├── test_theme.py └── test_xpl.py └── tox.ini /.ci/build_matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/build_matrix.sh -------------------------------------------------------------------------------- /.ci/collect_mapdl_logs_locals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/collect_mapdl_logs_locals.sh -------------------------------------------------------------------------------- /.ci/collect_mapdl_logs_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/collect_mapdl_logs_remote.sh -------------------------------------------------------------------------------- /.ci/display_logs_locals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/display_logs_locals.sh -------------------------------------------------------------------------------- /.ci/display_logs_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/display_logs_remote.sh -------------------------------------------------------------------------------- /.ci/display_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/display_test.py -------------------------------------------------------------------------------- /.ci/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/entrypoint.sh -------------------------------------------------------------------------------- /.ci/pytest_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/pytest_summary.py -------------------------------------------------------------------------------- /.ci/requirements_test_xvfb.txt: -------------------------------------------------------------------------------- 1 | pyvista>=0.38.1 2 | -------------------------------------------------------------------------------- /.ci/requirements_testing_minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/requirements_testing_minimal.txt -------------------------------------------------------------------------------- /.ci/start_mapdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/start_mapdl.sh -------------------------------------------------------------------------------- /.ci/substitute_defective_gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/substitute_defective_gif.sh -------------------------------------------------------------------------------- /.ci/waiting_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.ci/waiting_services.sh -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/requirements.txt -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/start.sh -------------------------------------------------------------------------------- /.devcontainer/codespaces-dev/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-dev/welcome.rst -------------------------------------------------------------------------------- /.devcontainer/codespaces-docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-docs/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/codespaces-docs/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-docs/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/codespaces-docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-docs/requirements.txt -------------------------------------------------------------------------------- /.devcontainer/codespaces-docs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-docs/start.sh -------------------------------------------------------------------------------- /.devcontainer/codespaces-docs/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/codespaces-docs/welcome.rst -------------------------------------------------------------------------------- /.devcontainer/devcontainer-local/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/devcontainer-local/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer-local/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/devcontainer-local/start.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer-local/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.devcontainer/devcontainer-local/welcome.rst -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/ISSUE_TEMPLATE/examples.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/actions/build-matrix/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/actions/build-matrix/action.yml -------------------------------------------------------------------------------- /.github/actions/pytest-summary/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/actions/pytest-summary/action.yml -------------------------------------------------------------------------------- /.github/actions/test-julia/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/actions/test-julia/action.yml -------------------------------------------------------------------------------- /.github/actions/test-windows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/actions/test-windows/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/approver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/approver.yml -------------------------------------------------------------------------------- /.github/workflows/cache_cleaner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/cache_cleaner.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/doc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/doc-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker_clean_untagged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/docker_clean_untagged.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/linkchecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/linkchecker.yml -------------------------------------------------------------------------------- /.github/workflows/migrator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/migrator.yml -------------------------------------------------------------------------------- /.github/workflows/pr-docs-cleaner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/pr-docs-cleaner.yml -------------------------------------------------------------------------------- /.github/workflows/test-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/test-local.yml -------------------------------------------------------------------------------- /.github/workflows/test-remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.github/workflows/test-remote.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/.vale.ini -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/changelog.d/4337.maintenance.md: -------------------------------------------------------------------------------- 1 | Pre-commit autoupdate 2 | -------------------------------------------------------------------------------- /doc/changelog.d/4341.maintenance.md: -------------------------------------------------------------------------------- 1 | Update CHANGELOG for v0.71.3 2 | -------------------------------------------------------------------------------- /doc/changelog.d/4342.added.md: -------------------------------------------------------------------------------- 1 | Add support for ANSYS version 2026R2 2 | -------------------------------------------------------------------------------- /doc/changelog.d/changelog_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/changelog.d/changelog_template.jinja -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/post_process_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/post_process_tex.py -------------------------------------------------------------------------------- /doc/source/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/404.rst -------------------------------------------------------------------------------- /doc/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/custom.css -------------------------------------------------------------------------------- /doc/source/_static/landing_page_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/landing_page_demo.gif -------------------------------------------------------------------------------- /doc/source/_static/pyansys-logo-light_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/pyansys-logo-light_mode.png -------------------------------------------------------------------------------- /doc/source/_static/pymapdl_dark_logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/pymapdl_dark_logo_large.png -------------------------------------------------------------------------------- /doc/source/_static/pymapdl_dark_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/pymapdl_dark_logo_small.png -------------------------------------------------------------------------------- /doc/source/_static/pymapdl_light_logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/pymapdl_light_logo_large.png -------------------------------------------------------------------------------- /doc/source/_static/pymapdl_light_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_static/pymapdl_light_logo_small.png -------------------------------------------------------------------------------- /doc/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/source/api/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/commands.rst -------------------------------------------------------------------------------- /doc/source/api/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/components.rst -------------------------------------------------------------------------------- /doc/source/api/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/database.rst -------------------------------------------------------------------------------- /doc/source/api/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/geometry.rst -------------------------------------------------------------------------------- /doc/source/api/helper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/helper.rst -------------------------------------------------------------------------------- /doc/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/index.rst -------------------------------------------------------------------------------- /doc/source/api/information.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/information.rst -------------------------------------------------------------------------------- /doc/source/api/inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/inline.rst -------------------------------------------------------------------------------- /doc/source/api/krylov.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/krylov.rst -------------------------------------------------------------------------------- /doc/source/api/launcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/launcher.rst -------------------------------------------------------------------------------- /doc/source/api/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/logging.rst -------------------------------------------------------------------------------- /doc/source/api/mapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/mapdl.rst -------------------------------------------------------------------------------- /doc/source/api/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/mesh.rst -------------------------------------------------------------------------------- /doc/source/api/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/parameters.rst -------------------------------------------------------------------------------- /doc/source/api/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/plotting.rst -------------------------------------------------------------------------------- /doc/source/api/pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/pool.rst -------------------------------------------------------------------------------- /doc/source/api/post.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/post.rst -------------------------------------------------------------------------------- /doc/source/api/solution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/solution.rst -------------------------------------------------------------------------------- /doc/source/api/xpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/api/xpl.rst -------------------------------------------------------------------------------- /doc/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/changelog.rst -------------------------------------------------------------------------------- /doc/source/cheat_sheet/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /doc/source/cheat_sheet/_static/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/cheat_sheet/cheat_sheet.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/cheat_sheet/cheat_sheet.qmd -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/examples/devportal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/examples/devportal.rst -------------------------------------------------------------------------------- /doc/source/examples/extended_examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/examples/extended_examples/index.rst -------------------------------------------------------------------------------- /doc/source/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/examples/index.rst -------------------------------------------------------------------------------- /doc/source/getting_started/contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/contribution.rst -------------------------------------------------------------------------------- /doc/source/getting_started/devcontainer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/devcontainer.rst -------------------------------------------------------------------------------- /doc/source/getting_started/develop_pymapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/develop_pymapdl.rst -------------------------------------------------------------------------------- /doc/source/getting_started/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/docker.rst -------------------------------------------------------------------------------- /doc/source/getting_started/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/faq.rst -------------------------------------------------------------------------------- /doc/source/getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/index.rst -------------------------------------------------------------------------------- /doc/source/getting_started/install_mapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/install_mapdl.rst -------------------------------------------------------------------------------- /doc/source/getting_started/install_pymapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/install_pymapdl.rst -------------------------------------------------------------------------------- /doc/source/getting_started/launcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/launcher.rst -------------------------------------------------------------------------------- /doc/source/getting_started/learning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/learning.rst -------------------------------------------------------------------------------- /doc/source/getting_started/macos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/macos.rst -------------------------------------------------------------------------------- /doc/source/getting_started/make_container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/make_container.rst -------------------------------------------------------------------------------- /doc/source/getting_started/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/project.rst -------------------------------------------------------------------------------- /doc/source/getting_started/using_julia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/using_julia.rst -------------------------------------------------------------------------------- /doc/source/getting_started/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/versioning.rst -------------------------------------------------------------------------------- /doc/source/getting_started/wsl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/getting_started/wsl.rst -------------------------------------------------------------------------------- /doc/source/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/helpers.py -------------------------------------------------------------------------------- /doc/source/images/2d_pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/2d_pressure.png -------------------------------------------------------------------------------- /doc/source/images/_commands/GSTR5-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/GSTR5-2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/Linebrk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/Linebrk.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/eqRESP2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/eqRESP2.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gEDBO1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEDBO1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gEDLC1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEDLC1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN1a.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN1b.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN2a.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN2b.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN3.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN4.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gEINFIN5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gEINFIN5.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE1.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE2.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE3.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE4.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE5.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE6.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE7.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE8.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gENDRELEASE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gENDRELEASE9.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gFFT1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gFFT1.PNG -------------------------------------------------------------------------------- /doc/source/images/_commands/gFFT2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gFFT2.PNG -------------------------------------------------------------------------------- /doc/source/images/_commands/gFFT3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gFFT3.PNG -------------------------------------------------------------------------------- /doc/source/images/_commands/gINIT1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gINIT1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gKCEN1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gKCEN1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gMERGE1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gMERGE1.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gMERGE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gMERGE2.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gMERGE3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gMERGE3.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gMSHP1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gMSHP1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gOCDATA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gOCDATA1.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDCORR00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDCORR00.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDCORR06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDCORR06.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDCORR09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDCORR09.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDMETHbbm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDMETHbbm.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDMETHccd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDMETHccd.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDMETHdir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDMETHdir.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDMETHlhs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDMETHlhs.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDPLOTlimits1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDPLOTlimits1.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARbeta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARbeta.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARbetacum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARbetacum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARexpo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARexpo.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARexpocum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARexpocum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARgama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARgama.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARgamacum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARgamacum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARgaus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARgaus.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARgauscum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARgauscum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARlog1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARlog1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARlog2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARlog2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARlog2cum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARlog2cum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARtgau.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARtgau.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARtgaucum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARtgaucum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARtria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARtria.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARtriacum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARtriacum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARunif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARunif.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARunifcum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARunifcum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARweib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARweib.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPDVARweibcum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPDVARweibcum.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gPORT1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPORT1.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPORT2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPORT2.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPORT3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPORT3.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPSMAT1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPSMAT1.gif -------------------------------------------------------------------------------- /doc/source/images/_commands/gPSMAT2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gPSMAT2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gRACE1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gRACE1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gRDEC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gRDEC.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD10.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD11.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD12.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD13.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD14a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD14a.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD14b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD14b.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD14c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD14c.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD15a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD15a.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD15b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD15b.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD15c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD15c.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD16.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD18.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD19.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD20.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD21.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD22.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD22b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD22b.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD22c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD22c.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD25.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD26.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD27.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD28.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD29.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD3.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD30.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD31.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD32.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD33.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD34.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD35.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD4.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD5.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD6.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD7.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD8.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD9.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECD_pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECD_pipe.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECO1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECO1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECP.fig.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECP.fig.3.jpg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECP1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECP1.jpg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECR2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECR2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECR3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECR3.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSECT1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSECT1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL1.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL10.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL11.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL12.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL13.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL14.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL15.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL16.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL2.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL3.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL4.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL5.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL6.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL7.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL8.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSFCONTROL9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSFCONTROL9.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gSHSDcontact.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSHSDcontact.eps -------------------------------------------------------------------------------- /doc/source/images/_commands/gSHSDoverlap.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gSHSDoverlap.eps -------------------------------------------------------------------------------- /doc/source/images/_commands/gTORU1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gTORU1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmd_oczone_pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmd_oczone_pip.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdexxt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdexxt1.jpg -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdrsymm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdrsymm1.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdrsymm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdrsymm2.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdrsymm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdrsymm3.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdrsymm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdrsymm4.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gcmdrsymm5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gcmdrsymm5.png -------------------------------------------------------------------------------- /doc/source/images/_commands/gpdcfld1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gpdcfld1.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gpdcfld2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gpdcfld2.svg -------------------------------------------------------------------------------- /doc/source/images/_commands/gsecplotshell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gsecplotshell.jpg -------------------------------------------------------------------------------- /doc/source/images/_commands/gsupportblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/_commands/gsupportblock.png -------------------------------------------------------------------------------- /doc/source/images/aplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/aplot.png -------------------------------------------------------------------------------- /doc/source/images/bc_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/bc_plot.png -------------------------------------------------------------------------------- /doc/source/images/bc_plot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/bc_plot_2.png -------------------------------------------------------------------------------- /doc/source/images/bracket_dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/bracket_dimensions.png -------------------------------------------------------------------------------- /doc/source/images/cicd_dark_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/cicd_dark_theme.png -------------------------------------------------------------------------------- /doc/source/images/cicd_light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/cicd_light_theme.png -------------------------------------------------------------------------------- /doc/source/images/codecov_increase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/codecov_increase.png -------------------------------------------------------------------------------- /doc/source/images/codespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/codespaces.png -------------------------------------------------------------------------------- /doc/source/images/cyclic_disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/cyclic_disc.png -------------------------------------------------------------------------------- /doc/source/images/cylinder_eplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/cylinder_eplot.png -------------------------------------------------------------------------------- /doc/source/images/dcb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/dcb.gif -------------------------------------------------------------------------------- /doc/source/images/dcb_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/dcb_test.png -------------------------------------------------------------------------------- /doc/source/images/dcb_test_dark_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/dcb_test_dark_theme.png -------------------------------------------------------------------------------- /doc/source/images/dcb_test_light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/dcb_test_light_theme.png -------------------------------------------------------------------------------- /doc/source/images/eplot_vtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/eplot_vtk.png -------------------------------------------------------------------------------- /doc/source/images/examples_main_page/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/examples_main_page/misc.png -------------------------------------------------------------------------------- /doc/source/images/examples_main_page/vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/examples_main_page/vm.png -------------------------------------------------------------------------------- /doc/source/images/lathe_cutter_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/lathe_cutter_model.png -------------------------------------------------------------------------------- /doc/source/images/lplot_vtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/lplot_vtk.png -------------------------------------------------------------------------------- /doc/source/images/manifold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/manifold.gif -------------------------------------------------------------------------------- /doc/source/images/model_solenoid_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/model_solenoid_2d.png -------------------------------------------------------------------------------- /doc/source/images/multiblock_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/multiblock_pic1.png -------------------------------------------------------------------------------- /doc/source/images/multiblock_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/multiblock_pic2.png -------------------------------------------------------------------------------- /doc/source/images/multiblock_pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/multiblock_pic3.png -------------------------------------------------------------------------------- /doc/source/images/post_norm_disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/post_norm_disp.png -------------------------------------------------------------------------------- /doc/source/images/rst_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/rst_structure.png -------------------------------------------------------------------------------- /doc/source/images/unified_install_2019R1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/unified_install_2019R1.jpg -------------------------------------------------------------------------------- /doc/source/images/vplot_vtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/images/vplot_vtk.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/links.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/.fake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/.fake -------------------------------------------------------------------------------- /doc/source/mapdl_commands/apdl/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/apdl/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/apdl/macro_files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/apdl/macro_files.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/aux12/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/aux12/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/aux15/iges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/aux15/iges.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/aux15/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/aux15/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/aux2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/aux2/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/aux3/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/aux3/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/conn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/conn.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/database/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/database/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/database/picking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/database/picking.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/database/set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/database/set_up.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/graphs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/graphs.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/labeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/labeling.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/scaling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/scaling.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/set_up.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/style.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/graphics/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/graphics/views.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/inqfun.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/inqfun.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/map/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/map/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/misc.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/_fatigue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/_fatigue.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/animation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/animation.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/controls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/controls.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/listing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/listing.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/results.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/set_up.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post1/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post1/status.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/_set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/_set_up.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/controls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/controls.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/display.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/listing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/listing.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/operations.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/set_up.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/post26/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/post26/status.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/areas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/areas.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/booleans.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/booleans.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/coupled_dof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/coupled_dof.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/database.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/digitizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/digitizing.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/elements.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/hard_points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/hard_points.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/keypoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/keypoints.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/lines.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/materials.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/meshing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/meshing.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/morphing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/morphing.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/nodes.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/primitives.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/sections.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/status.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/prep7/volumes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/prep7/volumes.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/session/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/session/files.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/session/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/session/index.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/solution/inertia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/solution/inertia.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/solution/ocean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/solution/ocean.rst -------------------------------------------------------------------------------- /doc/source/mapdl_commands/solution/rezoning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/mapdl_commands/solution/rezoning.rst -------------------------------------------------------------------------------- /doc/source/substitutions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/substitutions.rst -------------------------------------------------------------------------------- /doc/source/user_guide/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/cli.rst -------------------------------------------------------------------------------- /doc/source/user_guide/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/components.rst -------------------------------------------------------------------------------- /doc/source/user_guide/convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/convert.rst -------------------------------------------------------------------------------- /doc/source/user_guide/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/database.rst -------------------------------------------------------------------------------- /doc/source/user_guide/hpc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/hpc/examples.rst -------------------------------------------------------------------------------- /doc/source/user_guide/hpc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/hpc/introduction.rst -------------------------------------------------------------------------------- /doc/source/user_guide/hpc/pymapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/hpc/pymapdl.rst -------------------------------------------------------------------------------- /doc/source/user_guide/hpc/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/hpc/settings.rst -------------------------------------------------------------------------------- /doc/source/user_guide/hpc/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/hpc/troubleshooting.rst -------------------------------------------------------------------------------- /doc/source/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/index.rst -------------------------------------------------------------------------------- /doc/source/user_guide/krylov.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/krylov.rst -------------------------------------------------------------------------------- /doc/source/user_guide/lic_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/lic_guide.pdf -------------------------------------------------------------------------------- /doc/source/user_guide/mapdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/mapdl.rst -------------------------------------------------------------------------------- /doc/source/user_guide/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/math.rst -------------------------------------------------------------------------------- /doc/source/user_guide/mesh_geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/mesh_geometry.rst -------------------------------------------------------------------------------- /doc/source/user_guide/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/parameters.rst -------------------------------------------------------------------------------- /doc/source/user_guide/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/plotting.rst -------------------------------------------------------------------------------- /doc/source/user_guide/pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/pool.rst -------------------------------------------------------------------------------- /doc/source/user_guide/post.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/post.rst -------------------------------------------------------------------------------- /doc/source/user_guide/troubleshoot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/troubleshoot.rst -------------------------------------------------------------------------------- /doc/source/user_guide/xpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/source/user_guide/xpl.rst -------------------------------------------------------------------------------- /doc/styles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/styles/.gitignore -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/styles/config/vocabularies/ANSYS/accept.txt -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/doc/webserver.sh -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/make_container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/docker/make_container.rst -------------------------------------------------------------------------------- /examples/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/.vale.ini -------------------------------------------------------------------------------- /examples/00-mapdl-examples/3d_notch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/3d_notch.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/3d_plate_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/3d_plate_thermal.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/README.txt -------------------------------------------------------------------------------- /examples/00-mapdl-examples/acoustic_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/acoustic_analysis.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/basic_dpf_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/basic_dpf_example.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/beam_with_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/beam_with_report.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/bracket_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/bracket_static.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/composite_dcb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/composite_dcb.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/contact_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/contact_elements.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/cyclic_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/cyclic_analysis.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/cyclic_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/cyclic_static.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/geometry.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/lathe_cutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/lathe_cutter.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/mapdl_3d_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/mapdl_3d_beam.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/mapdl_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/mapdl_beam.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/modal_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/modal_beam.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/path_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/path_operations.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/pressure_vessel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/pressure_vessel.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/psd-vm203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/psd-vm203.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/pyvista_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/pyvista_mesh.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/spotweld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/spotweld.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/torsional_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/torsional_load.py -------------------------------------------------------------------------------- /examples/00-mapdl-examples/transient_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/00-mapdl-examples/transient_thermal.py -------------------------------------------------------------------------------- /examples/01-geometry/00-keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/00-keypoints.py -------------------------------------------------------------------------------- /examples/01-geometry/01-lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/01-lines.py -------------------------------------------------------------------------------- /examples/01-geometry/02-areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/02-areas.py -------------------------------------------------------------------------------- /examples/01-geometry/03-volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/03-volumes.py -------------------------------------------------------------------------------- /examples/01-geometry/04-primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/04-primitives.py -------------------------------------------------------------------------------- /examples/01-geometry/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/01-geometry/README.txt -------------------------------------------------------------------------------- /examples/02-tips-n-tricks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/02-tips-n-tricks/README.txt -------------------------------------------------------------------------------- /examples/03-general-fea/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/examples/03-general-fea/README.txt -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minimum_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/minimum_requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ansys/mapdl/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/apdl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/apdl/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/aux15/iges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/aux15/iges.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/aux2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/aux2/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/aux3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/aux3/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/conn.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/hidden.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/inq_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/inq_func.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/map/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/map/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/misc/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/misc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/misc/misc.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/parse.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post1/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post1/listing.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post1/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post1/results.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post1/set_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post1/set_up.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post1/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post1/status.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post26/set_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post26/set_up.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/post26/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/post26/status.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/preproc/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/preproc/areas.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/preproc/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/preproc/lines.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/preproc/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/preproc/nodes.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_commands/session/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_commands/session/files.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/_version.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/convert.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/core.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/list_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/list_instances.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/start.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/cli/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/cli/stop.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/commands.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/common_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/common_grpc.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/component.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/convert.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/database/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/database/database.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/database/elems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/database/elems.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/database/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/database/nodes.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/errors.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/downloads.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/examples.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/VM233.IGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/VM233.IGES -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm1.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm10.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm100.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm101.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm101.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm102.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm102.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm103.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm103.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm104.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm104.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm105.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm105.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm106.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm106.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm107.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm107.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm108.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm108.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm109.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm109.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm11.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm110.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm110.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm111.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm111.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm112.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm112.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm113.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm113.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm114.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm114.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm115.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm115.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm116.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm116.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm117.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm117.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm118.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm118.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm119.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm119.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm12.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm120.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm120.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm121.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm121.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm122.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm122.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm123.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm123.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm124.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm124.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm125.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm125.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm126.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm126.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm127.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm127.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm128.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm128.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm129.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm129.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm13.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm130.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm130.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm131.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm131.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm132.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm132.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm133.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm133.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm134.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm134.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm135.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm135.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm136.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm136.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm137.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm137.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm138.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm138.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm139.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm139.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm14.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm140.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm140.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm141.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm141.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm142.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm142.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm143.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm143.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm144.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm144.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm145.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm145.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm146.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm146.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm147.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm147.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm148.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm148.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm149.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm149.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm15.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm150.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm150.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm151.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm151.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm152.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm152.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm153.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm153.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm154.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm154.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm155.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm155.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm156.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm156.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm157.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm157.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm16.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm17.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm18.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm19.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm2.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm20.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm21.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm22.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm23.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm24.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm25.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm26.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm27.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm28.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm29.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm3.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm30.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm31.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm32.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm33.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm34.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm35.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm36.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm37.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm38.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm39.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm4.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm40.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm41.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm41.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm42.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm42.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm43.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm43.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm44.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm44.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm45.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm45.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm46.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm46.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm47.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm47.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm48.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm48.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm49.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm49.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm5.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm50.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm51.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm51.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm52.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm52.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm53.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm53.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm54.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm54.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm55.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm55.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm56.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm56.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm57.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm57.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm58.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm58.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm59.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm59.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm6.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm60.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm61.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm61.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm62.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm62.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm63.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm63.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm64.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm65.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm65.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm66.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm66.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm67.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm67.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm68.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm68.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm69.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm69.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm7.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm70.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm70.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm71.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm71.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm72.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm72.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm73.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm73.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm74.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm74.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm75.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm75.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm76.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm76.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm77.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm77.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm78.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm78.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm79.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm79.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm8.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm80.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm80.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm81.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm81.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm82.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm82.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm83.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm83.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm84.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm84.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm85.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm85.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm86.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm86.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm87.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm87.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm88.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm88.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm89.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm89.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm9.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm90.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm90.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm91.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm91.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm92.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm92.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm93.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm93.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm94.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm94.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm95.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm96.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm96.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm97.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm97.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm98.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm98.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vm99.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vm99.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc1.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc2.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc3.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc4.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc5.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc6.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc7.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmc8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmc8.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmd1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmd1.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmd2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmd2.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vmd3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vmd3.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme1.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme2.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme3.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme4.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme5.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif/vme6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif/vme6.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/verif_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/verif_files.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/examples/wing.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/examples/wing.dat -------------------------------------------------------------------------------- /src/ansys/mapdl/core/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/helpers.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/information.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/jupyter.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/krylov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/krylov.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/launcher.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/licensing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/licensing.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/logging.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_console.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_core.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_extended.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_geometry.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_grpc.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_inprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_inprocess.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mapdl_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mapdl_types.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mesh/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mesh/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mesh/mesh.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/mesh_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/mesh_grpc.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/misc.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/parameters.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/plotting/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/plotting/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/plotting/consts.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/plotting/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/plotting/theme.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/plotting/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/plotting/visualizer.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/pool.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/post.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/__init__.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/constants.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/core.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/data.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/plotting.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/reader/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/reader/types.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/report.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/solution.py -------------------------------------------------------------------------------- /src/ansys/mapdl/core/xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/src/ansys/mapdl/core/xpl.py -------------------------------------------------------------------------------- /tests/.image_cache/all_same_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/all_same_values.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[False].png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[False]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[False]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[False]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[False]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[False]_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[False]_3.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[None].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[None].png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[None]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[None]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[None]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[None]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[None]_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[None]_3.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[True].png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[True]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[True]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[True]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[True]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot[True]_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot[True]_3.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot_1.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot_2.png -------------------------------------------------------------------------------- /tests/.image_cache/aplot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/aplot_3.png -------------------------------------------------------------------------------- /tests/.image_cache/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/background.png -------------------------------------------------------------------------------- /tests/.image_cache/bc_bc_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/bc_bc_labels.png -------------------------------------------------------------------------------- /tests/.image_cache/bc_bc_labels_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/bc_bc_labels_1.png -------------------------------------------------------------------------------- /tests/.image_cache/bc_glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/bc_glyph.png -------------------------------------------------------------------------------- /tests/.image_cache/bc_only_one_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/bc_only_one_node.png -------------------------------------------------------------------------------- /tests/.image_cache/bc_plot_bc_labels[ux].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/bc_plot_bc_labels[ux].png -------------------------------------------------------------------------------- /tests/.image_cache/cmplot_all[KP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cmplot_all[KP].png -------------------------------------------------------------------------------- /tests/.image_cache/cmplot_all[NODE].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cmplot_all[NODE].png -------------------------------------------------------------------------------- /tests/.image_cache/cmplot_individual[KP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cmplot_individual[KP].png -------------------------------------------------------------------------------- /tests/.image_cache/color_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/color_areas.png -------------------------------------------------------------------------------- /tests/.image_cache/cpos_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cpos_input.png -------------------------------------------------------------------------------- /tests/.image_cache/cuadratic_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cuadratic_beam.png -------------------------------------------------------------------------------- /tests/.image_cache/cuadratic_beam_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/cuadratic_beam_1.png -------------------------------------------------------------------------------- /tests/.image_cache/disp_plot[X].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/disp_plot[X].png -------------------------------------------------------------------------------- /tests/.image_cache/disp_plot[Y].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/disp_plot[Y].png -------------------------------------------------------------------------------- /tests/.image_cache/disp_plot[norm].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/disp_plot[norm].png -------------------------------------------------------------------------------- /tests/.image_cache/disp_plot[z].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/disp_plot[z].png -------------------------------------------------------------------------------- /tests/.image_cache/elem_disp_plot[NORM].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/elem_disp_plot[NORM].png -------------------------------------------------------------------------------- /tests/.image_cache/elem_disp_plot[X].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/elem_disp_plot[X].png -------------------------------------------------------------------------------- /tests/.image_cache/elem_disp_plot[Y].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/elem_disp_plot[Y].png -------------------------------------------------------------------------------- /tests/.image_cache/elem_disp_plot[Z].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/elem_disp_plot[Z].png -------------------------------------------------------------------------------- /tests/.image_cache/eplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[False].png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[False]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[False]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[False]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[False]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[None].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[None].png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[None]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[None]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[None]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[None]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[None]_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[None]_3.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[True].png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[True]_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[True]_1.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[True]_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[True]_2.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot[True]_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot[True]_3.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot_1.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot_2.png -------------------------------------------------------------------------------- /tests/.image_cache/eplot_savefig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/eplot_savefig.png -------------------------------------------------------------------------------- /tests/.image_cache/kplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/kplot.png -------------------------------------------------------------------------------- /tests/.image_cache/kplot[None].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/kplot[None].png -------------------------------------------------------------------------------- /tests/.image_cache/kplot[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/kplot[True].png -------------------------------------------------------------------------------- /tests/.image_cache/lplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/lplot.png -------------------------------------------------------------------------------- /tests/.image_cache/lplot[None].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/lplot[None].png -------------------------------------------------------------------------------- /tests/.image_cache/lplot[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/lplot[True].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot[None-False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot[None-False].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot[None-True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot[None-True].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot[True-False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot[True-False].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot[True-True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot[True-True].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[False].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[None-False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[None-False].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[None-True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[None-True].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[True-False].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[True-False].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[True-True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[True-True].png -------------------------------------------------------------------------------- /tests/.image_cache/nplot_vtk[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/nplot_vtk[True].png -------------------------------------------------------------------------------- /tests/.image_cache/pick_nodes[A].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/pick_nodes[A].png -------------------------------------------------------------------------------- /tests/.image_cache/pick_nodes[R].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/pick_nodes[R].png -------------------------------------------------------------------------------- /tests/.image_cache/pick_nodes[S].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/pick_nodes[S].png -------------------------------------------------------------------------------- /tests/.image_cache/pick_nodes[U].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/pick_nodes[U].png -------------------------------------------------------------------------------- /tests/.image_cache/plot_element_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_element_values.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_empty_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_empty_mesh.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_empty_mesh_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_empty_mesh_1.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_nodal_eqv_stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_nodal_eqv_stress.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_nodal_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_nodal_values.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_nodal_values_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_nodal_values_1.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_nodal_values_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_nodal_values_2.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_pressure.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_rot[X].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_rot[X].png -------------------------------------------------------------------------------- /tests/.image_cache/plot_rot[Y].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_rot[Y].png -------------------------------------------------------------------------------- /tests/.image_cache/plot_rot[z].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_rot[z].png -------------------------------------------------------------------------------- /tests/.image_cache/plot_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_temperature.png -------------------------------------------------------------------------------- /tests/.image_cache/plot_voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plot_voltage.png -------------------------------------------------------------------------------- /tests/.image_cache/plotter_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/plotter_input.png -------------------------------------------------------------------------------- /tests/.image_cache/show_bounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/show_bounds.png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-CHRG].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-CHRG].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-FX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-FX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-FY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-FY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-FZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-FZ].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-HEAT].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-HEAT].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-TEMP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-TEMP].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-UX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-UX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-UY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-UY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-UZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-UZ].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[0-VOLT].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[0-VOLT].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-CHRG].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-CHRG].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-FX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-FX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-FY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-FY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-FZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-FZ].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-HEAT].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-HEAT].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-TEMP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-TEMP].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-UX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-UX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-UY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-UY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-UZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-UZ].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[50-VOLT].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[50-VOLT].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-FX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-FX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-FY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-FY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-FZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-FZ].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-UX].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-UX].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-UY].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-UY].png -------------------------------------------------------------------------------- /tests/.image_cache/single_glyph[500-UZ].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/single_glyph[500-UZ].png -------------------------------------------------------------------------------- /tests/.image_cache/vplot[None].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/vplot[None].png -------------------------------------------------------------------------------- /tests/.image_cache/vplot[True].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/.image_cache/vplot[True].png -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_component.py -------------------------------------------------------------------------------- /tests/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_console.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_element.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_files/ducati_frame.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/ducati_frame.mac -------------------------------------------------------------------------------- /tests/test_files/full26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/full26.dat -------------------------------------------------------------------------------- /tests/test_files/krylov_point_load.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/krylov_point_load.cdb -------------------------------------------------------------------------------- /tests/test_files/krylov_pressure_load.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/krylov_pressure_load.cdb -------------------------------------------------------------------------------- /tests/test_files/model_damping.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/model_damping.db -------------------------------------------------------------------------------- /tests/test_files/sector.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/sector.cdb -------------------------------------------------------------------------------- /tests/test_files/static.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/static.dat -------------------------------------------------------------------------------- /tests/test_files/wing.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_files/wing.dat -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_grpc.py -------------------------------------------------------------------------------- /tests/test_importing_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_importing_geometries.py -------------------------------------------------------------------------------- /tests/test_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_information.py -------------------------------------------------------------------------------- /tests/test_inline_functions/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_inline_functions/test_query.py -------------------------------------------------------------------------------- /tests/test_inprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_inprocess.py -------------------------------------------------------------------------------- /tests/test_krylov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_krylov.py -------------------------------------------------------------------------------- /tests/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_launcher.py -------------------------------------------------------------------------------- /tests/test_launcher_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_launcher_remote.py -------------------------------------------------------------------------------- /tests/test_licensing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_licensing.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_mapdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_mapdl.py -------------------------------------------------------------------------------- /tests/test_mapdl_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_mapdl_grpc.py -------------------------------------------------------------------------------- /tests/test_mesh_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_mesh_grpc.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_parameters.py -------------------------------------------------------------------------------- /tests/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_plotting.py -------------------------------------------------------------------------------- /tests/test_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_pool.py -------------------------------------------------------------------------------- /tests/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_post.py -------------------------------------------------------------------------------- /tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_report.py -------------------------------------------------------------------------------- /tests/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_result.py -------------------------------------------------------------------------------- /tests/test_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_solution.py -------------------------------------------------------------------------------- /tests/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_theme.py -------------------------------------------------------------------------------- /tests/test_xpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tests/test_xpl.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pymapdl/HEAD/tox.ini --------------------------------------------------------------------------------