Skip to content

Commit 06d4a92

Browse files
authored
Merge pull request #269 from ansys/DPF_261/daily_doc_update
DPF doc daily update for 261
2 parents 77a5ab3 + 97e59df commit 06d4a92

File tree

9 files changed

+409
-5
lines changed

9 files changed

+409
-5
lines changed

2026R1/dpf-framework-26-r1/changelog/changelog.md

Lines changed: 120 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Changelog
22

3-
Changes since the last released version for DPF 26.1.pre1 (as of 2025-11-03).
3+
Changes since the last released version for DPF 26.1.pre1 (as of 2025-11-04).
44

55
This changelog is organized by category, with sections for different types of updates (new features, bug fixes, changes, performance improvements).
66

77
The following table shows which components have updates in each category.
88

99
| Component | Features | Fixes |
1010
|-----------|----------|----------|
11-
| cff | [2 items](#Features_cff) | |
11+
| cff | [2 items](#Features_cff) |[1 item](#Fixes_cff) |
1212
| cgns | [1 item](#Features_cgns) | |
1313
| changelog | [2 items](#Features_changelog) |[1 item](#Fixes_changelog) |
1414
| ci | [1 item](#Features_ci) |[1 item](#Fixes_ci) |
@@ -29,7 +29,7 @@ The following table shows which components have updates in each category.
2929
| hgp | [2 items](#Features_hgp) | |
3030
| kernel | [2 items](#Features_kernel) |[1 item](#Fixes_kernel) |
3131
| lsdyna | [1 item](#Features_lsdyna) | |
32-
| mapdl | [12 items](#Features_mapdl) |[14 items](#Fixes_mapdl) |
32+
| mapdl | [12 items](#Features_mapdl) |[15 items](#Fixes_mapdl) |
3333
| mapdlpluggin | |[1 item](#Fixes_mapdlpluggin) |
3434
| math | [7 items](#Features_math) | |
3535
| mechanical | [2 items](#Features_mechanical) |[3 items](#Fixes_mechanical) |
@@ -64,6 +64,12 @@ The following table shows which components have updates in each category.
6464
>
6565
>
6666
67+
### <a id="Fixes_cff"></a> Fixes
68+
69+
- Set proper names for User-Defined Memory variables:
70+
>
71+
>
72+
>
6773
## cgns
6874
### <a id="Features_cgns"></a> Features
6975

@@ -565,6 +571,13 @@ The following table shows which components have updates in each category.
565571
566572
### <a id="Fixes_mapdl"></a> Fixes
567573

574+
- Fix crash caused by invalid iterator when reading shell data:
575+
>
576+
>
577+
> Fix an access violation when reading shell elements in pres_to_field op.
578+
>
579+
>
580+
568581
- Fix expansion of element nodal forces (ENF):
569582
> Fix the expansion of inertial element nodal forces
570583
>
@@ -1174,6 +1187,98 @@ The following table shows which components have updates in each category.
11741187
> Scales all the fields of a fields container to a given precision threshold, then rounds all the values to the unit.
11751188
11761189

1190+
#### info
1191+
1192+
- [markdown_latex_example](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/info/markdown_latex_example.md):
1193+
> This operator showcases the use of Markdown and LaTeX in operator and pin descriptions:
1194+
> # Headings
1195+
> ## h2
1196+
> ### h3
1197+
> #### h4
1198+
> ##### h5
1199+
>
1200+
> # Text
1201+
> This should result in a paragraph
1202+
> it's that simple.
1203+
>
1204+
>
1205+
> *italic*, **bold**
1206+
>
1207+
> # Lists
1208+
> * an *unordered list*
1209+
> * with **some hierarchy**
1210+
> 1. and an ordered
1211+
> 2. mixed
1212+
> * list
1213+
> * directly
1214+
> * inside
1215+
>
1216+
> # Code
1217+
> ## Code block
1218+
> ```c
1219+
> std::string a = 'test';
1220+
> ```
1221+
> ```js
1222+
> var a = 'test';
1223+
> ```
1224+
> ```python
1225+
> a: str = 'test'
1226+
> ```
1227+
> ## Inline code
1228+
> And well `inline code` should also work.
1229+
>
1230+
> # Quotes
1231+
>
1232+
> > A Quote
1233+
> >
1234+
> > With *some text* **blocks inside**
1235+
> >
1236+
> > * even a list
1237+
> > * should be
1238+
> > * possible
1239+
>
1240+
> ## Links
1241+
> Links such as [link](https://docs.pyansys.com/).
1242+
>
1243+
> ## Images
1244+
> ![an image](https://docs.pyansys.com/version/dev/_static/pyansys_logo_transparent_white.png)
1245+
>
1246+
>
1247+
> ## Separations
1248+
>
1249+
> ---
1250+
>
1251+
> ## Checklists
1252+
>
1253+
> - [ ] how
1254+
> - [ ] about
1255+
> - [ ] a
1256+
> - [x] nice
1257+
> - [x] check
1258+
> - [ ] list
1259+
>
1260+
> ## Tables
1261+
>
1262+
> | Left header | middle header | last header |
1263+
> |-------------|---------------|-------------|
1264+
> | cell 1 | cell **2** | cell 3 |
1265+
> | cell 4 | cell 5 | cell 6 |
1266+
>
1267+
>
1268+
> ## LaTeX
1269+
>
1270+
> An inline equation $x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}.$ using LaTeX dollar delimiters.
1271+
>
1272+
> An inline equation \(x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}.\) using LaTeX parenthesis delimiters.
1273+
>
1274+
> An equation on its own using dollar delimiters:
1275+
> $$x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}.$$
1276+
>
1277+
> An equation on its own using square bracket delimiters:
1278+
> \[x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}.\]
1279+
>
1280+
1281+
11771282
#### mapping
11781283
11791284
- [apply_mechanical_native_mapping](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/mapping/apply_mechanical_native_mapping.md):
@@ -1354,6 +1459,9 @@ The following table shows which components have updates in each category.
13541459
- [gasket_total_closure_XZ](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/result/gasket_total_closure_XZ.md):
13551460
> Read/compute elemental gasket total closure XZ shear component (02 component) by calling the readers defined by the datasources. Regarding the requested location and the input mesh scoping, the result location can be Nodal/ElementalNodal/Elemental.
13561461
1462+
- [layer_orientation_provider](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/result/layer_orientation_provider.md):
1463+
> Read the layer orientations.
1464+
13571465
- [modal_acceleration](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/result/modal_acceleration.md):
13581466
> Read/compute modal acceleration by calling the readers defined by the datasources.
13591467
@@ -1485,6 +1593,8 @@ The following table shows which components have updates in each category.
14851593
14861594
> 0.2.0: Improving performance for ElementalNodal and Elemental locations.
14871595
1596+
> 0.2.1: Removing unnedeed output hidden pin.
1597+
14881598
14891599
- [solid_to_skin_fc](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/mapping/solid_to_skin_fc.md)
14901600
@@ -1494,6 +1604,8 @@ The following table shows which components have updates in each category.
14941604
14951605
> 0.2.0: Improving performance for ElementalNodal and Elemental locations
14961606
1607+
> 0.2.1: Fixed issue with different scopings in the input field.
1608+
14971609
14981610
14991611
#### math
@@ -1806,6 +1918,11 @@ The following table shows which components have updates in each category.
18061918
> 0.1.0: Add pin eExtendMidNodesPin to add/remove mid-nodes when averaging from ElementalNodal to Nodal. Default:True
18071919
18081920
1921+
- [mapdl.pres_to_field](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/result/mapdl.pres_to_field.md)
1922+
1923+
> 0.0.1: Fix crash caused by invalid iterator when reading shell data.
1924+
1925+
18091926
- [num_surface_status_changes](https://ansys-a.devportal.io/docs/dpf-framework-2026-r1/operator-specifications/result/num_surface_status_changes.md)
18101927
18111928
> 0.1.0: Add pin eExtendMidNodesPin to add/remove mid-nodes when averaging from ElementalNodal to Nodal. Default:True

2026R1/dpf-framework-26-r1/operator-specifications/compression/quantization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugin: N/A
44
license: any_dpf_supported_increments
55
---
66

7-
# compression:quantization field
7+
# compression:quantization (field)
88

99
**Version: 0.0.0**
1010

2026R1/dpf-framework-26-r1/operator-specifications/compression/quantization_fc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugin: N/A
44
license: any_dpf_supported_increments
55
---
66

7-
# compression:quantization fields container
7+
# compression:quantization (fields container)
88

99
**Version: 0.0.0**
1010

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Info operators
2+
3+
- [markdown latex example](markdown_latex_example.md)

0 commit comments

Comments
 (0)