Réponse apportée
Time dependent external heat flux in PDE Toolbox
Hi Pascal, You are on the right track, refer to the externalHeatFlux in the example: https://www.mathworks.com/help/pde/ug/h...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Unexpected Result for 3-D Thermal Transient Analysis of Heat sink using PDE Solver Toolbox
Here is the correct results using the new STL after fixing two more inconsitencies: Radiation problem should include temperatu...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
Unexpected Result for 3-D Thermal Transient Analysis of Heat sink using PDE Solver Toolbox
Hello Jake, You seem to have unit mismatch in the MATLAB model. PDE Toolbox doesn't have any units. When you exported the geom...

presque 7 ans il y a | 1

Réponse apportée
Solving 2D Convection Diffusion Equation
You might be able to setup the 2-D version using PDE toolbox. Take look at the following code. Please verify I have accuratly ca...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Solving PDE for Hygromechanical Coupling with f coefficient as a function of previous PDE results
You should be all set if you replace the last two lines in your function with the following one line: fx = [gradx.'.*coefRGx;gr...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Error using deval in pde toolbox
Hi SS, The warning: Warning: Failure at t=1.307250e+00. Unable to meet integration tolerances without reducing the step size...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Temperature-dependent boundary conditions
Do you have PDE Toolbox in your installed products list? You can check this by executing 'ver' at the command prompt. If so, di...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Radiation in PDE thermal model
To activate both radiation and convection on the same boundary, combine them into one assignment as: thermalBC(thermalmodel,'Fa...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
Temperature in a specific point with pde thermal
Yes! Check out the interpolateTemperature function.

environ 7 ans il y a | 0

Réponse apportée
How to specify initial conditions for two different subdomains in PDE solver?
I suggest you to look at the programmatic workflow, refer to the programmatic workflow overview doc page. In the programmatic ...

environ 7 ans il y a | 0

Réponse apportée
How to specify f coefficient function for arbitrarily located point sources within a domain.
If you want to use addtional arguments in computing f, then wrap the f coefficient function around the actual function that take...

environ 7 ans il y a | 0

Réponse apportée
Determine locations struct used in PDE solver
You can write that code that you indented to use to "create a matrix that is of length N by M where ..." in the function itself....

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Time-dependent thermal conductivity
Function should return values of k at all points requested by the solver, points are in the first argument. Update your funciton...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Import of a 2D mesh created by Mesh2D or NodeLab into PDE Toolbox
You can import triangles in 2-D into PDE Toolbox using geometryFromMesh function. Although it creates geometry using the mesh da...

environ 7 ans il y a | 0

Réponse apportée
Usage of InternalHeatSource from PDE toolbox (Heat Transfer)
Value of internal hear source should be energy per unit volume. Are you sure your internalHeatSource command is getting executed...

environ 7 ans il y a | 0

Réponse apportée
Time-dependent internal heat source
You cannot add function handle as you have done, f+q in: specifyCoefficients(model,'m',0,'d',d,'c',c,'a',a,'f',f+q); I would r...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
How I introduce a matrix form of c coefficient in PDE equation using solvepde matlab command
Output of c coefficient function should be a matrix or column vector of appropriate size, where the number of columns correspond...

environ 7 ans il y a | 0

Réponse apportée
Efficient sensor placement optimization
Not sure if I understand your question correctly. Are you referring to location mesh nodes when you say sensor? My guess is you...

environ 7 ans il y a | 0

Réponse apportée
Heat transfer question in pde toolbox
Yes, all the three properties can be defined as function of temperature. This will make the problem highly nonlinear, existance ...

environ 7 ans il y a | 0

Réponse apportée
How can I resolve the error "PDE coefficients cannot be function of solution or time." in a static solution of a PDE.
What are the output arguments in you function call InterpolateDisplacement? [UVdispB, UVdispT, UVdispL, UVdispR]=InterpolateDis...

environ 7 ans il y a | 0

Réponse apportée
How to create a copy of a pde model ?
Get hold of the handle that is provided as output, like: bc = applyBoundaryCondition(....) Now you can...

environ 7 ans il y a | 0

Réponse apportée
How to apply the boundary conditons to the mass and stiffness matrices?
Use the 'nullspace' as second argument, you will get matrices with BC imposed by eleminating dirichlet DoFs. Regards, Ravi

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Cannot apply multiple, region-dependent thermal properties in PDE Toolbox
This is a bug where solver fails to distinguish the functions as seperate based on some queries. Workaround is to define variati...

environ 7 ans il y a | 1

Réponse apportée
How squareg works ?
Hi Pavel, I don't fully understand your question, but I can answer a portion on how to create square of different size. You can...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
PDE tool box, internal heat generation and BC conditions
If the problem is axisymmetric, then you need follow the approach similar to this example: https://www.mathworks.com/help/pde/...

plus de 7 ans il y a | 0

Réponse apportée
How can i define PDE coefficient which is scalar matrix inside the boundary
Hi Kim, Is your ffunc depends on solution, i.e., using state.u? Can you provide sample data, also xv and yv? Regards, Ravi ...

plus de 7 ans il y a | 0

Réponse apportée
Boundary condition for multidomain geometry
Hi Urban, Would you be able to share your code and data? Geometric faces are identified by analyzing how drastic the normal ch...

plus de 7 ans il y a | 0

Réponse apportée
Retrieving indices of times for a time-dependent system of PDEs within applyBoundaryCondition()
You need to create an interpolant object, see for example, griddedInterpolant. Construct interpolant (may be one for each N), an...

plus de 7 ans il y a | 0

Réponse apportée
PDE Toolbox does not recognize subdomains in imported .stl geometry
STL with multiple bodies are imported as separate cells in PDE Toolbox. Essentially, the two cells are disconnected for analysis...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
I find that the matlab official example "deflection-of-a-piezoelectric-actuator" cannot be correct
Hello Prof. Ciavarella, Can you provide a bit more details, reproduction code and expected results, of the modified setup to i...

plus de 7 ans il y a | 0

| A accepté

Charger plus