Point cloud data of bent beam

This point data represents the surface in the middle area of a wide beam under pure bending (simulated, see graph). In the transverse direction, the transverse contraction creates a curvature in the opposite direction to the main curvature, resulting in this saddle surface. However, the wider the beam (–> plate) becomes, the flatter this curvature becomes in the middle and only the edges bend upwards.

  • 1. column: x-axis
  • 2. column: y-axis
  • 3.column: z-axis
  • 4.column: Elongation in longitudinal direction (m/m)

Provided by Patrick Otto, HTW Dresden

Powershell: Ändern des Datums einer Datei auf Windows

Änderungsdatum

Powershell öffnen und eingeben:

Set-ItemProperty -Path "D:\myFolderOrFile" -Name "LastWriteTime" -Value "01.01.2022 12:00:00"

Alle Subfolder & -files rekursiv umdatieren:

Get-ChildItem -Path "D:\myFolderOrFile" -Recurse | ForEach-Object {
Set-ItemProperty $_.FullName -Name "LastWriteTime" -Value "01.01.2022 12:00:00"

Erstelldatum

Set-ItemProperty -Path "D:\myFolderOrFile" -Name "CreationTime" -Value "01.01.2022 12:00:00"

Alle Subfolder & -files rekursiv umdatieren:

Get-ChildItem -Path "D:\myFolderOrFile" -Recurse | ForEach-Object {
Set-ItemProperty $_.FullName -Name "CreationTime" -Value "01.01.2022 12:00:00"

Anpacken!