diff --git a/version/dev/_downloads/06082043848dd97eedadd25f3f52c2a3/011_rst_workflow.zip b/version/dev/_downloads/06082043848dd97eedadd25f3f52c2a3/011_rst_workflow.zip
index 5e8edc050..a1d98b9cc 100644
Binary files a/version/dev/_downloads/06082043848dd97eedadd25f3f52c2a3/011_rst_workflow.zip and b/version/dev/_downloads/06082043848dd97eedadd25f3f52c2a3/011_rst_workflow.zip differ
diff --git a/version/dev/_downloads/10c683dc9c8f7d99ad68d28ad0b5be88/013_thermal_example.py b/version/dev/_downloads/10c683dc9c8f7d99ad68d28ad0b5be88/013_thermal_example.py
index 53b98b683..0cbdf0e7f 100644
--- a/version/dev/_downloads/10c683dc9c8f7d99ad68d28ad0b5be88/013_thermal_example.py
+++ b/version/dev/_downloads/10c683dc9c8f7d99ad68d28ad0b5be88/013_thermal_example.py
@@ -26,15 +26,17 @@
Thermal analysis
----------------
-PyDPF Composites can also be used to post-process thermal analyses.
-In this case, the simulation is a two-step analysis where the results of
-a thermal analysis are an input of the structural analysis. So, the RST
-contains temperature and structural results.
-The example mimics a PCB which was modeled with Ansys Composites PrePost (ACP).
-where the solid model feature of ACP is used to generate the volume mesh.
+This example shows how to evaluate a thermal analysis.
+The simulation's thermal analysis results are also
+the input of a structural analysis.
+Therefore, the RST file contains temperature and structural results.
-In detail, the example shows how to extract the temperatures for a specific ply,
-and a specific material.
+The example imitates a printed circuit board (PCB) that was
+modeled with Ansys Composites PrepPost (ACP), using the solid model feature to
+generate the volume mesh.
+
+Descriptions of how to extract temperatures for a specific ply
+and material are provided.
.. note::
@@ -67,22 +69,22 @@
# %%
# Initialize the model
# ~~~~~~~~~~~~~~~~~~~~
-# The composite model is initialized with the composite files and the server.
-# It provides access to the mesh, results, lay-up and materials
+# Initialize the composite model with the composite files and server.
+# The model provides access to the mesh, results, lay-up, and materials.
composite_model = CompositeModel(composite_files, server)
# %%
-# Get Results - Temperatures
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~
-# The temperatures are stored under structural_temperature
+# Get temperature results
+# ~~~~~~~~~~~~~~~~~~~~~~~
+# The temperatures are stored under ``structural_temperature``.
temp_op = composite_model.core_model.results.structural_temperature()
temperatures_fc = temp_op.outputs.fields_container()
# %%
-# Ply-wise results
-# ~~~~~~~~~~~~~~~~
-# Ply-wise results can be easily extracted using the function
-# :func:`.get_ply_wise_data` and by passing the ply name.
+# Get ply results
+# ~~~~~~~~~~~~~~~
+# Extract the ply-wise results by passing the ply name
+# to the function :func:`.get_ply_wise_data`.
all_ply_names = get_all_analysis_ply_names(composite_model.get_mesh())
print(all_ply_names)
@@ -99,10 +101,10 @@
composite_model.get_mesh().plot(nodal_values)
# %%
-# Material-wise results
-# ~~~~~~~~~~~~~~~~~~~~~
-# It is also possible to filter the results by material.
-# In this example the element-wise maximum temperature
+# Get material results
+# ~~~~~~~~~~~~~~~~~~~~
+# You can filter the results by material.
+# In this example, the element-wise maximum temperature
# is extracted for the material `Honeycomb Aluminum Alloy`.
print(composite_model.material_names)
material_id = composite_model.material_names["Honeycomb Aluminum Alloy"]
diff --git a/version/dev/_downloads/11ba9ded9a0acf54c4f861149963385c/014_cyclic_symmetry_example.zip b/version/dev/_downloads/11ba9ded9a0acf54c4f861149963385c/014_cyclic_symmetry_example.zip
index 023fa2cab..0b0f35e82 100644
Binary files a/version/dev/_downloads/11ba9ded9a0acf54c4f861149963385c/014_cyclic_symmetry_example.zip and b/version/dev/_downloads/11ba9ded9a0acf54c4f861149963385c/014_cyclic_symmetry_example.zip differ
diff --git a/version/dev/_downloads/22db00a3f064a1cfaa82c24a763eda42/005_get_layup_properties_example.zip b/version/dev/_downloads/22db00a3f064a1cfaa82c24a763eda42/005_get_layup_properties_example.zip
index 1b18f4a2a..14a458ca2 100644
Binary files a/version/dev/_downloads/22db00a3f064a1cfaa82c24a763eda42/005_get_layup_properties_example.zip and b/version/dev/_downloads/22db00a3f064a1cfaa82c24a763eda42/005_get_layup_properties_example.zip differ
diff --git a/version/dev/_downloads/2481d85388158be8d2f0db2cc842ad6d/010_harmonic_example.zip b/version/dev/_downloads/2481d85388158be8d2f0db2cc842ad6d/010_harmonic_example.zip
index ae2eaddc4..1894148c2 100644
Binary files a/version/dev/_downloads/2481d85388158be8d2f0db2cc842ad6d/010_harmonic_example.zip and b/version/dev/_downloads/2481d85388158be8d2f0db2cc842ad6d/010_harmonic_example.zip differ
diff --git a/version/dev/_downloads/2e65b9281fef6fa6d0079a988272ffd7/099_dpf_composite_failure_workflow.zip b/version/dev/_downloads/2e65b9281fef6fa6d0079a988272ffd7/099_dpf_composite_failure_workflow.zip
index 690d1a09b..1818f6753 100644
Binary files a/version/dev/_downloads/2e65b9281fef6fa6d0079a988272ffd7/099_dpf_composite_failure_workflow.zip and b/version/dev/_downloads/2e65b9281fef6fa6d0079a988272ffd7/099_dpf_composite_failure_workflow.zip differ
diff --git a/version/dev/_downloads/580520531ccb915b110be66a1df4aa7a/001_failure_operator_example.zip b/version/dev/_downloads/580520531ccb915b110be66a1df4aa7a/001_failure_operator_example.zip
index b0a193f59..f2fd0a8b6 100644
Binary files a/version/dev/_downloads/580520531ccb915b110be66a1df4aa7a/001_failure_operator_example.zip and b/version/dev/_downloads/580520531ccb915b110be66a1df4aa7a/001_failure_operator_example.zip differ
diff --git a/version/dev/_downloads/5f8f78f4df09423299a7c4dc46409314/006_filter_composite_data_example.zip b/version/dev/_downloads/5f8f78f4df09423299a7c4dc46409314/006_filter_composite_data_example.zip
index 60019d7b2..d02efde5e 100644
Binary files a/version/dev/_downloads/5f8f78f4df09423299a7c4dc46409314/006_filter_composite_data_example.zip and b/version/dev/_downloads/5f8f78f4df09423299a7c4dc46409314/006_filter_composite_data_example.zip differ
diff --git a/version/dev/_downloads/675f27bf7817e74cb3738ead0ca88ae1/012_fatigue_example.zip b/version/dev/_downloads/675f27bf7817e74cb3738ead0ca88ae1/012_fatigue_example.zip
index 8bd05010c..f3adc3fb1 100644
Binary files a/version/dev/_downloads/675f27bf7817e74cb3738ead0ca88ae1/012_fatigue_example.zip and b/version/dev/_downloads/675f27bf7817e74cb3738ead0ca88ae1/012_fatigue_example.zip differ
diff --git a/version/dev/_downloads/8bbdd0639ab75734f24a77c9a3c2b12e/007_interlaminar_normal_stress_example.zip b/version/dev/_downloads/8bbdd0639ab75734f24a77c9a3c2b12e/007_interlaminar_normal_stress_example.zip
index db384b353..c9cfbfb09 100644
Binary files a/version/dev/_downloads/8bbdd0639ab75734f24a77c9a3c2b12e/007_interlaminar_normal_stress_example.zip and b/version/dev/_downloads/8bbdd0639ab75734f24a77c9a3c2b12e/007_interlaminar_normal_stress_example.zip differ
diff --git a/version/dev/_downloads/8e5fa0d6f9171a181f50dce691b4a506/004_get_material_properties_example.zip b/version/dev/_downloads/8e5fa0d6f9171a181f50dce691b4a506/004_get_material_properties_example.zip
index 4274430eb..6914c797f 100644
Binary files a/version/dev/_downloads/8e5fa0d6f9171a181f50dce691b4a506/004_get_material_properties_example.zip and b/version/dev/_downloads/8e5fa0d6f9171a181f50dce691b4a506/004_get_material_properties_example.zip differ
diff --git a/version/dev/_downloads/a3424d721d24538e13ccae45271a6812/013_thermal_example.zip b/version/dev/_downloads/a3424d721d24538e13ccae45271a6812/013_thermal_example.zip
index 185a4bcac..cf5dd571b 100644
Binary files a/version/dev/_downloads/a3424d721d24538e13ccae45271a6812/013_thermal_example.zip and b/version/dev/_downloads/a3424d721d24538e13ccae45271a6812/013_thermal_example.zip differ
diff --git a/version/dev/_downloads/a803e039e20f8505fa54025987d70490/008_assembly_example.zip b/version/dev/_downloads/a803e039e20f8505fa54025987d70490/008_assembly_example.zip
index 2ed6f6ce0..4306381ad 100644
Binary files a/version/dev/_downloads/a803e039e20f8505fa54025987d70490/008_assembly_example.zip and b/version/dev/_downloads/a803e039e20f8505fa54025987d70490/008_assembly_example.zip differ
diff --git a/version/dev/_downloads/b1e39d6ebd1ae9f7b992469a76dd9264/013_thermal_example.ipynb b/version/dev/_downloads/b1e39d6ebd1ae9f7b992469a76dd9264/013_thermal_example.ipynb
index 9cffbb57d..dc14ad7f1 100644
--- a/version/dev/_downloads/b1e39d6ebd1ae9f7b992469a76dd9264/013_thermal_example.ipynb
+++ b/version/dev/_downloads/b1e39d6ebd1ae9f7b992469a76dd9264/013_thermal_example.ipynb
@@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Thermal analysis {#thermal_example}\n================\n\nPyDPF Composites can also be used to post-process thermal analyses. In\nthis case, the simulation is a two-step analysis where the results of a\nthermal analysis are an input of the structural analysis. So, the RST\ncontains temperature and structural results. The example mimics a PCB\nwhich was modeled with Ansys Composites PrePost (ACP). where the solid\nmodel feature of ACP is used to generate the volume mesh.\n\nIn detail, the example shows how to extract the temperatures for a\nspecific ply, and a specific material.\n\n::: {.note}\n::: {.title}\nNote\n:::\n\nWhen using a Workbench project, use the\n`.get_composite_files_from_workbench_result_folder`{.interpreted-text\nrole=\"func\"} method to obtain the input files.\n:::\n"
+ "Thermal analysis {#thermal_example}\n================\n\nThis example shows how to evaluate a thermal analysis. The simulation\\'s\nthermal analysis results are also the input of a structural analysis.\nTherefore, the RST file contains temperature and structural results.\n\nThe example imitates a printed circuit board (PCB) that was modeled with\nAnsys Composites PrepPost (ACP), using the solid model feature to\ngenerate the volume mesh.\n\nDescriptions of how to extract temperatures for a specific ply and\nmaterial are provided.\n\n::: {.note}\n::: {.title}\nNote\n:::\n\nWhen using a Workbench project, use the\n`.get_composite_files_from_workbench_result_folder`{.interpreted-text\nrole=\"func\"} method to obtain the input files.\n:::\n"
]
},
{
@@ -29,7 +29,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Initialize the model\n====================\n\nThe composite model is initialized with the composite files and the\nserver. It provides access to the mesh, results, lay-up and materials\n"
+ "Initialize the model\n====================\n\nInitialize the composite model with the composite files and server. The\nmodel provides access to the mesh, results, lay-up, and materials.\n"
]
},
{
@@ -47,7 +47,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Get Results - Temperatures\n==========================\n\nThe temperatures are stored under structural\\_temperature\n"
+ "Get temperature results\n=======================\n\nThe temperatures are stored under `structural_temperature`.\n"
]
},
{
@@ -65,7 +65,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Ply-wise results\n================\n\nPly-wise results can be easily extracted using the function\n`.get_ply_wise_data`{.interpreted-text role=\"func\"} and by passing the\nply name.\n"
+ "Get ply results\n===============\n\nExtract the ply-wise results by passing the ply name to the function\n`.get_ply_wise_data`{.interpreted-text role=\"func\"}.\n"
]
},
{
@@ -83,7 +83,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Material-wise results\n=====================\n\nIt is also possible to filter the results by material. In this example\nthe element-wise maximum temperature is extracted for the material\n[Honeycomb Aluminum Alloy]{.title-ref}.\n"
+ "Get material results\n====================\n\nYou can filter the results by material. In this example, the\nelement-wise maximum temperature is extracted for the material\n[Honeycomb Aluminum Alloy]{.title-ref}.\n"
]
},
{
diff --git a/version/dev/_downloads/d3956153b87b58f221986b849a6b844b/009_short_fiber_orientation_tensor.zip b/version/dev/_downloads/d3956153b87b58f221986b849a6b844b/009_short_fiber_orientation_tensor.zip
index 1e41a7f83..a584b41a4 100644
Binary files a/version/dev/_downloads/d3956153b87b58f221986b849a6b844b/009_short_fiber_orientation_tensor.zip and b/version/dev/_downloads/d3956153b87b58f221986b849a6b844b/009_short_fiber_orientation_tensor.zip differ
diff --git a/version/dev/_downloads/debbf6c5561a3af44e8fb8a1969f44c3/003_short_fiber_example.zip b/version/dev/_downloads/debbf6c5561a3af44e8fb8a1969f44c3/003_short_fiber_example.zip
index f88831c7e..98745ac44 100644
Binary files a/version/dev/_downloads/debbf6c5561a3af44e8fb8a1969f44c3/003_short_fiber_example.zip and b/version/dev/_downloads/debbf6c5561a3af44e8fb8a1969f44c3/003_short_fiber_example.zip differ
diff --git a/version/dev/_downloads/fad9fc3907e684aecc38368b0126ab34/002_sampling_point_example.zip b/version/dev/_downloads/fad9fc3907e684aecc38368b0126ab34/002_sampling_point_example.zip
index 90eac21c3..ee8705b60 100644
Binary files a/version/dev/_downloads/fad9fc3907e684aecc38368b0126ab34/002_sampling_point_example.zip and b/version/dev/_downloads/fad9fc3907e684aecc38368b0126ab34/002_sampling_point_example.zip differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_001.vtksz
index 308f3e123..490834ffe 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_002.vtksz
index 5f7f90dc7..b91c411ee 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_003.vtksz
index a5412cda8..8339d0692 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_001_failure_operator_example_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_001.vtksz
index 067e93aa9..401b11c33 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_002.vtksz
index eeb842b74..bfbe4e78c 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_003.vtksz
index d78e732ce..910d54102 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_003_short_fiber_example_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_004_get_material_properties_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_004_get_material_properties_example_001.vtksz
index d16d241b8..356be58ed 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_004_get_material_properties_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_004_get_material_properties_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_001.vtksz
index 02a44f6b8..00bd62086 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_002.vtksz
index 60800f23a..dd8537697 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_003.vtksz
index 1274ca14a..404495915 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_004.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_004.vtksz
index 69d062a42..047e1d69a 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_004.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_004.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_005.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_005.vtksz
index 28d2b5878..b2fd2045f 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_005.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_006_filter_composite_data_example_005.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_001.vtksz
index 5a1f9adeb..5243dcf40 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_002.vtksz
index eb4af3c71..be6e44501 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_007_interlaminar_normal_stress_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_001.vtksz
index d076de236..f536e6389 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_002.vtksz
index 399abda7c..d46e7ba7f 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_008_assembly_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_001.vtksz
index 1914bc5ad..71be17278 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_002.vtksz
index cab5a8b65..3f83fb5af 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_003.vtksz
index 186166808..993e9472c 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_004.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_004.vtksz
index 0f97241f3..38e83411e 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_004.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_004.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_005.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_005.vtksz
index 507edd2f9..8c1bf1ba8 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_005.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_009_short_fiber_orientation_tensor_005.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_010_harmonic_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_010_harmonic_example_001.vtksz
index b2817b5e8..b777cab9c 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_010_harmonic_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_010_harmonic_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_011_rst_workflow_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_011_rst_workflow_001.vtksz
index a914b769e..c36c43230 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_011_rst_workflow_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_011_rst_workflow_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_012_fatigue_example_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_012_fatigue_example_003.vtksz
index d51fd9f9c..b71bc3201 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_012_fatigue_example_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_012_fatigue_example_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_001.vtksz
index 3802e776c..1c149e33c 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_002.vtksz
index 87788de34..f9f7aba33 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_013_thermal_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_001.vtksz
index d8d93a1aa..555ea8e8c 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_001.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_002.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_002.vtksz
index 278ebae32..071b5a52b 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_002.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_002.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_003.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_003.vtksz
index 6f2c63d0c..4b24c591d 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_003.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_003.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_004.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_004.vtksz
index 9375eb788..abc076f5d 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_004.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_014_cyclic_symmetry_example_004.vtksz differ
diff --git a/version/dev/_images/examples/gallery_examples/images/sphx_glr_099_dpf_composite_failure_workflow_001.vtksz b/version/dev/_images/examples/gallery_examples/images/sphx_glr_099_dpf_composite_failure_workflow_001.vtksz
index 291adf671..660beef89 100644
Binary files a/version/dev/_images/examples/gallery_examples/images/sphx_glr_099_dpf_composite_failure_workflow_001.vtksz and b/version/dev/_images/examples/gallery_examples/images/sphx_glr_099_dpf_composite_failure_workflow_001.vtksz differ
diff --git a/version/dev/_images/sphx_glr_012_fatigue_example_001.png b/version/dev/_images/sphx_glr_012_fatigue_example_001.png
index ec775d3f8..31a381623 100644
Binary files a/version/dev/_images/sphx_glr_012_fatigue_example_001.png and b/version/dev/_images/sphx_glr_012_fatigue_example_001.png differ
diff --git a/version/dev/_images/sphx_glr_012_fatigue_example_003.png b/version/dev/_images/sphx_glr_012_fatigue_example_003.png
index 3141af4aa..e5d083b88 100644
Binary files a/version/dev/_images/sphx_glr_012_fatigue_example_003.png and b/version/dev/_images/sphx_glr_012_fatigue_example_003.png differ
diff --git a/version/dev/_images/sphx_glr_012_fatigue_example_thumb.png b/version/dev/_images/sphx_glr_012_fatigue_example_thumb.png
index b4c91dc22..f0dad59a6 100644
Binary files a/version/dev/_images/sphx_glr_012_fatigue_example_thumb.png and b/version/dev/_images/sphx_glr_012_fatigue_example_thumb.png differ
diff --git a/version/dev/_sources/examples/gallery_examples/001_failure_operator_example.rst.txt b/version/dev/_sources/examples/gallery_examples/001_failure_operator_example.rst.txt
index e9005cb49..1b6a4b555 100644
--- a/version/dev/_sources/examples/gallery_examples/001_failure_operator_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/001_failure_operator_example.rst.txt
@@ -284,7 +284,7 @@ Scope failure evaluation by plies.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 23.448 seconds)
+ **Total running time of the script:** (0 minutes 18.148 seconds)
.. _sphx_glr_download_examples_gallery_examples_001_failure_operator_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/002_sampling_point_example.rst.txt b/version/dev/_sources/examples/gallery_examples/002_sampling_point_example.rst.txt
index f060c6e7e..7222611ac 100644
--- a/version/dev/_sources/examples/gallery_examples/002_sampling_point_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/002_sampling_point_example.rst.txt
@@ -343,7 +343,7 @@ You can change the element ID of the sampling point to generate another plot.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 8.244 seconds)
+ **Total running time of the script:** (0 minutes 5.130 seconds)
.. _sphx_glr_download_examples_gallery_examples_002_sampling_point_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/003_short_fiber_example.rst.txt b/version/dev/_sources/examples/gallery_examples/003_short_fiber_example.rst.txt
index 126dac0ae..24d5de36a 100644
--- a/version/dev/_sources/examples/gallery_examples/003_short_fiber_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/003_short_fiber_example.rst.txt
@@ -306,7 +306,7 @@ Compute and plot the maximum failure value per element.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 3.440 seconds)
+ **Total running time of the script:** (0 minutes 3.286 seconds)
.. _sphx_glr_download_examples_gallery_examples_003_short_fiber_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/004_get_material_properties_example.rst.txt b/version/dev/_sources/examples/gallery_examples/004_get_material_properties_example.rst.txt
index 1e18aeb4c..a2faa643a 100644
--- a/version/dev/_sources/examples/gallery_examples/004_get_material_properties_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/004_get_material_properties_example.rst.txt
@@ -205,7 +205,7 @@ Implement a custom failure criterion: basic max strain
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.122 seconds)
+ **Total running time of the script:** (0 minutes 3.158 seconds)
.. _sphx_glr_download_examples_gallery_examples_004_get_material_properties_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/005_get_layup_properties_example.rst.txt b/version/dev/_sources/examples/gallery_examples/005_get_layup_properties_example.rst.txt
index 926a8cbe1..8d0953356 100644
--- a/version/dev/_sources/examples/gallery_examples/005_get_layup_properties_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/005_get_layup_properties_example.rst.txt
@@ -162,7 +162,7 @@ Plot basic layer properties (layer thicknesses, angles, and analysis ply names).
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 1.986 seconds)
+ **Total running time of the script:** (0 minutes 1.377 seconds)
.. _sphx_glr_download_examples_gallery_examples_005_get_layup_properties_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/006_filter_composite_data_example.rst.txt b/version/dev/_sources/examples/gallery_examples/006_filter_composite_data_example.rst.txt
index d9657c0e8..d0510303b 100644
--- a/version/dev/_sources/examples/gallery_examples/006_filter_composite_data_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/006_filter_composite_data_example.rst.txt
@@ -517,7 +517,7 @@ in the material direction in this ply.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 4.552 seconds)
+ **Total running time of the script:** (0 minutes 4.626 seconds)
.. _sphx_glr_download_examples_gallery_examples_006_filter_composite_data_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/007_interlaminar_normal_stress_example.rst.txt b/version/dev/_sources/examples/gallery_examples/007_interlaminar_normal_stress_example.rst.txt
index 1c63d6d3e..4b20db8d1 100644
--- a/version/dev/_sources/examples/gallery_examples/007_interlaminar_normal_stress_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/007_interlaminar_normal_stress_example.rst.txt
@@ -307,7 +307,7 @@ Plot s3 at the mid-plane of a certain ply.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 7.800 seconds)
+ **Total running time of the script:** (0 minutes 7.423 seconds)
.. _sphx_glr_download_examples_gallery_examples_007_interlaminar_normal_stress_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/008_assembly_example.rst.txt b/version/dev/_sources/examples/gallery_examples/008_assembly_example.rst.txt
index e2960b39e..18f62c35c 100644
--- a/version/dev/_sources/examples/gallery_examples/008_assembly_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/008_assembly_example.rst.txt
@@ -256,7 +256,7 @@ For DPF Server versions 7.0 and later, element information can be retrieved dire
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.826 seconds)
+ **Total running time of the script:** (0 minutes 5.290 seconds)
.. _sphx_glr_download_examples_gallery_examples_008_assembly_example.py:
diff --git a/version/dev/_sources/examples/gallery_examples/009_short_fiber_orientation_tensor.rst.txt b/version/dev/_sources/examples/gallery_examples/009_short_fiber_orientation_tensor.rst.txt
index 4ca1f21d4..8e7c154fe 100644
--- a/version/dev/_sources/examples/gallery_examples/009_short_fiber_orientation_tensor.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/009_short_fiber_orientation_tensor.rst.txt
@@ -432,7 +432,7 @@ Plot some components of the fiber orientation tensor.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.133 seconds)
+ **Total running time of the script:** (0 minutes 5.968 seconds)
.. _sphx_glr_download_examples_gallery_examples_009_short_fiber_orientation_tensor.py:
diff --git a/version/dev/_sources/examples/gallery_examples/010_harmonic_example.rst.txt b/version/dev/_sources/examples/gallery_examples/010_harmonic_example.rst.txt
index fd2e07d0a..9bdac078a 100644
--- a/version/dev/_sources/examples/gallery_examples/010_harmonic_example.rst.txt
+++ b/version/dev/_sources/examples/gallery_examples/010_harmonic_example.rst.txt
@@ -434,7 +434,7 @@ at each frequency, because we look only at the element that has the highest IRF
.. code-block:: none
- [Set up model and evaluate failuresTotal running time of the script: (0 minutes 23.448 seconds)
Total running time of the script: (0 minutes 18.148 seconds)
-Total running time of the script: (0 minutes 8.244 seconds)
+Total running time of the script: (0 minutes 5.130 seconds)