The profile is being applied to a plane that intersects the walls of the honycomb core at an angle. The desired effect is to control the imaginary sloped plane which in essence is only a true surface every .182 in for ~.005 in. At the edge of every intersected cell of the honeycomb.
This...
Does the Profile of a Line or Surface have any special interpretaion when it comes to composite core. I have a coworker telling me that the profile of a line or surface tolerance can be measured at any point along the line/surface. This creates an issue with our attempt to define the profile of...
With the repeating sequence block you enter two vectors one for y-positions and one for time. So,
[0,1,1,0]
[0,1,2,3]
creates a trapazoid pulse signal where as
[0,0,1,1,0,0]
[0,1,1.001,2,2.001,3]
creates more of a square pulse signal
Using the repeating sequence to do a square waves is not...
The basic answer as to how to simulate a pump in simulink is to write the system of equations that defines the relationship between the input, voltage or torque or force, given to the pump and the output, pressure or flow. Then translate the equations into a hand written block diagram. From...
Marco83,
I read through this and think that the output:
"Optimization terminated: first-order optimality is less than options.TolFun."
Is how matlab tells the user that the fsolve function has completed its solution.
You can read more here , but I think that if you use the optimset...
Are you trying to ask how to solve a system of equations like the following?
The problem below is to solve for the acceleration vector components of a fluid particle in a fluild velocity field defined by,
u=z+t
v=xy+3t
w=x^2*2y*t/2
This would be done by solving the following equations...
sboyce,
I dont think simMechanics is appropriate for modeling the mobility of a 4 wheel vehicular platform. It is more suited to the modeling of linkage type mechanisms where at least one support can be a ground fixed revolute joint.
I would think a simulation for the mobility could be...
The formating of you post is off on my computer so I am not exactly certain how to answer your question. Try reading this as it might help. If it doesnt maybe post your code so that members of this forum can see what is going on, but be sure to post it with in the "unction y = mydiffeq(n)
x(-1)...
I am guessing you want to extract the data for a report or to manipulate it more. To bring it into Matlab read this.
Then if you wish to export it to an exel file read this or get this script
I hope this helps
BsK
sboyce,
I read what you posted in the Matlab forum.
This package might help though I have never personally used it.
I suggest you try to model the dynamic response of the robot to disturabances from the ground with what you have before you attempt to buy something to do it for you.
BsK
You can use this, dlmwrite(filename, M, '-append').
This way you can write your header with a seperate function and then you dlmwrite to drop the whole matrix in underneath it.
you can read more here
Hope this helps.
BsK