Is it possible to apply mutiple different pressure values on a single surface?

1 view (last 30 days)
Hi, I am using PDE toolbox for static simulation. I have a pressure data csv tabel which comes from pressure distribution sensor, I can only find how to apply Boundary loads on faces, edges, vertices, so how to apply different values on surface.
For example, how to apply nine different pressure value on a square flat plate which is divided into nine pieces?

Answers (1)

Shivansh
Shivansh on 20 Nov 2023
Edited: Shivansh on 20 Nov 2023
Hi Kuan!
I understand that you want to apply different pressure values on different divisions of a surface.
I am attaching steps along with code snippets for the square plate example. You can extend it to modify for your example.
1. Import the pressure data from the CSV table into MATLAB using the “readmatrix” function. Assuming the pressure values are stored in a column vector, you can use the following code:
pressureData = readmatrix('pressure_data.csv');
2. Create a PDE model using the “createpde” function:
model = createpde();
Create a geometry for the square flat “plate”:
geometryFromEdges(model, plate);
3. Divide the square plate into subdivisions using the “generateMesh” function:
subdivisions = 3;
generateMesh(model, 'Hmax', 1/subdivisions);
4. Define the boundary conditions for each subdivision. Assuming the pressure values are stored in the pressureData vector, you can use the following code:
for i = 1:subdivisions
pressure = pressureData(i); % Get the pressure value for the current subdivision
applyBoundaryCondition(model, 'neumann', 'Edge', i, 'g', pressure);
end
5. Solve the PDE using the “solvepde” function:
results = solvepde(model);
You can refer to the following documentations for more information about the following functions:
  1. readmatrix: https://www.mathworks.com/help/matlab/ref/readmatrix.html
  2. createpde: https://www.mathworks.com/help/pde/ug/createpde.html
  3. geometryFromEdges: https://www.mathworks.com/help/pde/ug/pde.pdemodel.geometryfromedges.htmlgenerateMesh.
  4. applyBoundaryCondition: https://www.mathworks.com/help/pde/ug/pde.pdemodel.applyboundarycondition.html
  5. solvepde: https://www.mathworks.com/help/pde/ug/pde.pdemodel.solvepde.html
I hope it helps!

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!