No BSD License
-
MAIN(varargin)
MAIN M-file for MAIN.fig
-
SottoGrafico (reazioni,forze)
Disegna le reazioni vincolari sul grafico
-
[N,b]=flex1 (d,F,nFor,b)
Crea un Vettore N contenente i bracci effettivi di ogni singola forza
-
[force,moment]=reaction(vecto...
REACTION Finds the reaction force and moment needed to balance a force.
-
[moment]=summoment(vectors, c...
SUMMOMENT Solves for the moment caused by a set of forces.
-
[resultant,couple]=sumforce(v...
SUMFORCE Sums a set of vectors into one force vector and a couple.
-
[xmag,ymag,xcor,ycor]=breakup...
BREAKUP Breaks a standard form force vector into its component parts.
-
caricaforze
Controlla la Distanza tra le Forze e segnala l'errore se la somma delle
-
f_pallucca(xC, yC, r, col)
traccia una circonferenza di centro C e raggio r
-
flex(forze,lung,reazioni)
Crea un vettore distanze che verr
-
plotta (reazA,reazB,lung,forz...
Disegna l'albero con le forze applicate e le reazioni ai vincoli
-
torx
-
View all files
from
Calculating blending moment of the shaft
by Riccardo
It calculate blending moment of the shaft when you insert a generic number of forces.
|
| [N,b]=flex1 (d,F,nFor,b)
|
% Crea un Vettore N contenente i bracci effettivi di ogni singola forza
function [N,b]=flex1 (d,F,nFor,b)
h=1;k=2;
for i=1:b
n=0;
for j=h:k
n=d(j)+n;
end
N(i)=n;
if h==k
h=1;k=k+1;
else
h=h+1;
end
end
|
|
Contact us at files@mathworks.com