Risposto
How can I extend the functionality of PDE tool box
Hi Jammi, You might want to explore the generic equation based workflow that solves the equations that can be cast into the sup...

oltre 3 anni fa | 1

Risposto
I can't use "structuralProperties" in PDE toolbox
Change the line: thePde = createpde(); to thePde = createpde('structural'); By default, createpde returns a model that has...

quasi 4 anni fa | 0

| accettato

Risposto
Plotting points from a 3D model onto a 2D graph
You can interpolate the temperatures at (x,y) coorinates over time and plot them. Refer to interpolateTemperatue function. Rega...

quasi 4 anni fa | 0

| accettato

Risposto
Interpolation of the results from the PDE toolbox and the spatial differentiation of the solution
You can do this using interpolateSolution and evaluateGradients. Regards, Ravi

quasi 4 anni fa | 1

| accettato

Risposto
Obtain the strain from the model analysis solution
Strain is in response to a applied loading. Modal analysis is a eigenvalue problem. So you won't be able to calculate strain fro...

quasi 4 anni fa | 0

Risposto
Applying boundary conditions to a circle
Hi Alun, You are applying your BCs on interior edges, these are not boundaries. Please refer to this page: https://www.mathwo...

quasi 4 anni fa | 0

| accettato

Risposto
How to update the PDE toolbox with the real measurement?
You can specify the displacement as a function, look at the the end of the the structualBC doc page. However, note that PDE Tool...

quasi 4 anni fa | 0

| accettato

Risposto
PDE Toolbox producing inconsistent solutions
Hi Atdhe, Here is a quick fix, tighten the tolerance, this will force ODE solver to take finer steps. Insert the following bef...

quasi 4 anni fa | 0

| accettato

Risposto
PDE magnetostatic electromagnet how to measure the magnetic field.
Hi Bastiaan, It might be easier if you do a 2-D approximate analysis. For 3-D, modeling the air around the coil to solve for m...

quasi 4 anni fa | 0

Risposto
Change color pdegplot/ gradient
One workaround would be switch the order of plots: figure() pdegplot(model,'FaceLabels','off','EdgeLabels','off','VertexLabels...

quasi 4 anni fa | 0

| accettato

Risposto
Transient Neumann boundary condition
You should be able to apply the Neumann BC using the power calculation that you have done in the beginning. But be sure to take ...

quasi 4 anni fa | 0

Risposto
Problem with coefficient c in function form in solving 2D-PDE (PDE toolbox)
Hi Chiara, Solver will call the function several times to check if it is returing the correct format of coeff and so on, for th...

quasi 4 anni fa | 0

| accettato

Risposto
why does using the Partial Differential Equation (PDE) Toolbox, I get the following error: PDEModel does not have a mesh?
Please use pdegplot, if you want to plot geometry. pdegplot(model,'FaceLabels','on')

circa 4 anni fa | 0

Risposto
3D PDE modelling different c coefficients for different spatial regions
Hi Barnaby, If all you want is different values of c for points within sphere and outside sphere, then you can just do this: ...

circa 4 anni fa | 0

| accettato

Risposto
Radiation and convection in thermal models with different ambient and sink temperatures
To pass additional parameter, wrap the functions that actually computes with the ones you specify as inputs. In your example: ....

circa 4 anni fa | 0

| accettato

Risposto
Error: Function specifying a coefficient must accept two input arguments and return one output argument (PDE Toolbox).
Chage f = zeros(N,nr3); to f = zeros(15,nr3); N is not in the scope of the function fcoeffunction. Regards, Ravi

circa 4 anni fa | 0

| accettato

Risposto
solving eigenvalues PDE problem
Hi Haya, You need to setup the problem using new workflow: model = createdpde; Then assign the geometry to the model using d...

circa 4 anni fa | 0

| accettato

Risposto
Defining internalHeatSource based on changing temperature?
Solver passes the value of solution and its derivatives in state struct array (state.u, state.ux, etc.) You can use this data in...

circa 4 anni fa | 1

| accettato

Risposto
Applying fixed temperature to face in 2D thermal simulation?
Hi Lisa, In 2-D, faces are part of domain. If you apply fixed temperature on a face, then that is the solution, no? If it is a...

circa 4 anni fa | 0

| accettato

Risposto
Export pde solution out of matlab
Hi Lalson, Solution is availble as a matrix in NodalSolution property of the result object obtained using solvepde. You may ne...

circa 4 anni fa | 0

| accettato

Risposto
PDEtoolbox_Error using daeic3 (line 230) Need a better guess y0 for consistent initial conditions.
You do have a singula mass matrix becuase of the equation 2. If I understand correctly equation 1 can be solved in isolation. On...

circa 4 anni fa | 0

| accettato

Risposto
internalHeatSource for cylindrical geometry
Having an axisymmetric analsysis, which is not supported yet, would simplify your setup.Here is an alternative approach which mi...

circa 4 anni fa | 0

Risposto
Defining a geometry to apply Heat flux - PDEPE Toolbox
Exactly as in the example you pointed to, in which you will find: thermalBC(thermalmodel,'Face',4,'HeatFlux',@externalHeatFlux,...

circa 4 anni fa | 0

| accettato

Risposto
Additional Inputs PDE Toolbox f coefficient
Change to: specifyCoefficients(model,'m',0,'d',0,'c',c_coeff,'a',0,'f',f_fun,'Cell',1); Remove the @ symbol in front of f_fun,...

circa 4 anni fa | 1

| accettato

Risposto
Colour Jet figure plot - how to view exact value?
If you got the solution, displ, u, and v by setting up and solving the PDEs in PDE Toolbox, then you would be able to use interp...

circa 4 anni fa | 0

Risposto
Magnetic Potential in PDE Modeler
Good you find your way to setup magnetic potential. PDE Toolbox is unit free. You need to setup the problem by specifying all q...

circa 4 anni fa | 0

Risposto
Mass Transfer - Forced Convection Boundary Condition
Your Neumann BC approach is the right option. But be aware that you can only model mass diffusion within domain, forced convecti...

circa 4 anni fa | 0

| accettato

Risposto
Is it possible apply moving load (constant force with a speed) when using the PDE ToolBox?
Yes, you can do so using a functional form of load. Say you are applying pressure on a face; you can define a function of pressu...

circa 4 anni fa | 0

Risposto
Adaptive mesh refinement function for time-dependent problems?
Adaptive refinement of time-dependent problem is not currently available in PDE Toolbox. However, you can do a coarse adaptive...

circa 4 anni fa | 0

| accettato

Risposto
PDE Toolbox: evaluateGradient for legacy workflow or convert legacy solution to PDE solution
Hi Maxime, You can create a result object of the kind you need using the solution from the legacy solver and the createPDEResu...

circa 4 anni fa | 1

| accettato

Carica altro