# Can I visualize the strains from an LS-Dyna analysis in Paraview?

**URL:** https://discourse.paraview.org/t/can-i-visualize-the-strains-from-an-ls-dyna-analysis-in-paraview/15326
**Category:** ParaView Support
**Created:** [August 30, 2024, 2:36am UTC](https://discourse.paraview.org/t/can-i-visualize-the-strains-from-an-ls-dyna-analysis-in-paraview/15326 "2024-08-30T02:36:05Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![vtac](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/v/8797f3/32.png) [@vtac](https://discourse.paraview.org/u/vtac)
#### Post date: [August 30, 2024, 2:36am UTC](https://discourse.paraview.org/t/can-i-visualize-the-strains-from-an-ls-dyna-analysis-in-paraview/15326/1 "2024-08-30T02:36:05Z")

</div>

I am new both to Paraview and LS-Dyna, so I apologize if this is a stupid question. I can open my d3plot files in Paraview without problems and visualize some quantities such as Stress. But I can’t see strains. On the other hand, in LS-PrePost I can see all the strains and even principal strains. What would be a good way of gaining full access to the full d3plot file in Paraview?

---

<div class="post-metadata">

### Author: ![todoooo](https://discourse.paraview.org/user_avatar/discourse.paraview.org/todoooo/32/2819_2.png) [@todoooo](https://discourse.paraview.org/u/todoooo)
#### Post date: [August 31, 2024, 1:59am UTC](https://discourse.paraview.org/t/can-i-visualize-the-strains-from-an-ls-dyna-analysis-in-paraview/15326/2 "2024-08-31T01:59:02Z")

</div>

Export your model file from LS-DYNA into a format that Paraview can load (e.g. Nastran BDF) and then the simplest way to handle the result sets would be to export them into CSV files.

> [@Reading Nastran .nas file and Results with .csv file](https://discourse.paraview.org/t/reading-nastran-nas-file-and-results-with-csv-file/1189/4):
>
> Harald, Here is the state file [merge\_arrays\_state.pvsm](https://discourse.paraview.org/uploads/default/original/2X/d/def04e40c56d8482785e3a3b5575d80bc78fbf26.pvsm) (251.2 KB) Here’s what I did, I opened the two files then selected the .nas and .csv readers in the pipeline browser and then created the Programmable Filter with the following script: blk0 = output.GetBlock(0) tbl = inputs[1] blk0.GetCellData().PassData(tbl.GetRowData().VTKObject) The result is that all the arrays from the csv are now available on the cells.
