Risposto
How can I just get the corner points in the 3D model?(PDE Toolbox)
Hi Haoran, It looks like you are interested in nodes that form the triangle element corners and not the midside nodes. Two opt...

circa 4 anni fa | 1

| accettato

Risposto
PDETool temperature gradient-dependent internal heat generation
Hi Tadeu, My apologies, this is a bug in detecting pseudo-nonlinearity. Solver does not pass solution and its derivative to cus...

circa 4 anni fa | 0

| accettato

Risposto
Solution dependent material coefficient? How to use specifyCoefficients in pdetool (for a time dependnet PDE solution)
Define a function or a anonymous function handle as per the prescribed format. For example you can define: cFcn = @(region,stat...

circa 4 anni fa | 0

| accettato

Risposto
partial derivative coding in matlab
Although I have not looked into details, you might be able to setup this problem using pdepe function available in base MATLAB (...

circa 4 anni fa | 0

Risposto
Capacitance by solving Poisson equation
If you setup the problem using PDE Toolbox, look here for example, then you get the gradients of the solution in the results. ...

circa 4 anni fa | 0

Risposto
How to properly add radiative heat flux boundary conditions in a stationary heat transfer problem using the pde toolbox?
Hi Eduardo, The issue is with the default tolerance. The default tolerance of 1E-4 in the model is too loose for your problem. ...

circa 4 anni fa | 0

| accettato

Risposto
How i can write transient condition in a pde thermal model?
Example: If you want to write y^2 - 2*t^2, you write: handlename=@(region,state) region.y.^2 - 2 * state.time^2 Yes, if it de...

circa 4 anni fa | 0

Risposto
How can I solve 2D transient diffusion equation with nonlinear source term?
I don't see any interaction between species being defined by the stated PDEs. You can define coefficients usng PDEModel workflo...

circa 4 anni fa | 0

Risposto
questions about the 'pdeeig'
Please use one the newer workflow like general equation based one, Structural or Thermal one. Once you setup your model in one ...

circa 4 anni fa | 0

| accettato

Risposto
Haw can I use the PDE toolbox to model isotropic thermal expansion?
The latest version of MATLAB has the capabality to solve for thermal expansion and thermal stress by specifying temperature as a...

circa 4 anni fa | 0

| accettato

Risposto
capability pde toolbox, 3d application heat transfer
If your 3-D model that you discretize involve only cubes then you can model this in PDE. For example see attached image: Yo...

circa 4 anni fa | 1

| accettato

Risposto
Defining non-constant Neumann Boundary Conditon
You do not need to model the interface BC explicitly. This condition should be automatically satisfied in the solution. Regard...

circa 4 anni fa | 0

Risposto
PDE Toolbox - Convection in Diffusion Equation
It looks like your function errored without returning one onput. Most likely the error could have been due to 'va' being out of...

circa 4 anni fa | 0

| accettato

Risposto
How to integrate PDE solution in 2D space?
If you are solving a single PDE, i.e., you used createpde(1) then you need to specify time-steps as the last argument. If you ha...

circa 4 anni fa | 0

| accettato

Risposto
How to set boundary conditions?
If you are using PDE Toolbox, then you have to create all those edges, and then you would be able to do it. Refer to the documen...

circa 4 anni fa | 0

| accettato

Risposto
3D Multi-Domain PDE Modelling
Thanks for taking time to explain the problem with such a detail and for providing the reproduction code. I tried to understand ...

circa 4 anni fa | 2

| accettato

Risposto
How to plot DiscreteGeometry objects
Looks like you are overwriting the plot in a loop. If you want to plot multiple figures then you insert: figure command before p...

circa 4 anni fa | 0

Risposto
Error While exporting data to workspace.
You can export solution by selecting menu option: Solve> Export Solution This would export the solution as 'u' variable to wor...

circa 4 anni fa | 0

Risposto
Use of "region" and "state" in PDE models with variable coefficients.
Hi Allen, Solver passes two input arguments to the function that you define, "region" and "state" are just place holder names....

circa 4 anni fa | 0

| accettato

Risposto
Import a 2D STL File
Hi Matthias, Your geometry in the STL file is indeed 3-D. I am assuming you want just the one of the flat faces for two 2-D an...

circa 4 anni fa | 0

| accettato

Risposto
Import a 2D STL File
The keyword here is "planar". Is your geomtry planar? Regards, Ravi

oltre 4 anni fa | 0

Risposto
Thermal simulation with Nodal Temperature Initial Condition
Couple of options: You can use a function to define the temperature, which you can specify to thermalIC as function_handle. Y...

oltre 4 anni fa | 0

Risposto
PDE toolbox and load on nodes
OK, in that case can you number the number of verteices in the model: >> gm Do you see the new VertexID in the plot you make? ...

oltre 4 anni fa | 0

Risposto
PDE toolbox and load on nodes
The function addVertex was introduced in R2019b. You might be running an older version of the MATLAB to get this error. Regard...

oltre 4 anni fa | 0

| accettato

Risposto
PDE Toolbox: Constant external heating on 4 sides of a Cylinder
Hi Pascal, If there is no axial variation, then I suggest using a 2-D crosssecion to solve the problem. In 2-D you can easily ...

oltre 4 anni fa | 0

| accettato

Risposto
EvaluateHeatRate Matlab PDE units and discussion
evaluateHeatRate returns the value of heat flux integrated our the specified face. So its unit would be unit of enery, if everyt...

oltre 4 anni fa | 0

| accettato

Risposto
How can I modify the default options (like RelTol' and 'AbsTol') of the pde solver when using the PDE toolbox?
You can edit those tolerances directly using the model object properties. Say, model = createpde(... User model the set RelTo...

oltre 4 anni fa | 0

| accettato

Risposto
Question on using geometryFromMesh
It looks like the node IDs from COMSOL might be 0 based. That is first node ID in COMSOL may be 0, in MATLAB it must be 1. You c...

oltre 4 anni fa | 1

| accettato

Risposto
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...

oltre 4 anni fa | 0

| accettato

Risposto
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...

oltre 4 anni fa | 1

| accettato

Carica altro