Plot won't show up in Mathematica

  • Thread starter Thread starter Victini11
  • Start date Start date
  • Tags Tags
    Mathematica Plot
Victini11
Messages
1
Reaction score
0
Homework Statement
My plot is not working, for some reason when I try to plot it it show nothing. I am not really used to using mathematica so maybe it's an syntax error but can really get what is wrong
Relevant Equations
Plot3D [(1.5/
1)*(2/1 +
n2)^2*((2*n1)/(n1 +
1.5))^2/(1 + ((n1 - 1.5)/(n1 + 1.5))^2 ((n1 + 1)/(1.5 +
1))^2 -
2*((n1 - 1.5)/(n1 + 1.5)*((n1 + 1)/(1.5 + 1)))*
Cos*(4*Pi*d*n1)), {n1, 1, 1.5}, {d, 100, 1000}]
IMG_20220614_144451.jpg
IMG_20220614_201740.jpg
1655255981668.png
 
Physics news on Phys.org
Code:
Plot3D [(1.5/
1)*(2/1 +
n2)^2*((2*n1)/(n1 +
1.5))^2/(1 + ((n1 - 1.5)/(n1 + 1.5))^2 ((n1 + 1)/(1.5 +
1))^2 -
2*((n1 - 1.5)/(n1 + 1.5)*((n1 + 1)/(1.5 + 1)))*
Cos*(4*Pi*d*n1)), {n1, 1, 1.5}, {d, 100, 1000}]
The is a n2 in there and the cosine should be
Code:
Cos[4*Pi*d*n1]
 
Thread 'Have I solved this structural engineering equation correctly?'
Hi all, I have a structural engineering book from 1979. I am trying to follow it as best as I can. I have come to a formula that calculates the rotations in radians at the rigid joint that requires an iterative procedure. This equation comes in the form of: $$ x_i = \frac {Q_ih_i + Q_{i+1}h_{i+1}}{4K} + \frac {C}{K}x_{i-1} + \frac {C}{K}x_{i+1} $$ Where: ## Q ## is the horizontal storey shear ## h ## is the storey height ## K = (6G_i + C_i + C_{i+1}) ## ## G = \frac {I_g}{h} ## ## C...
Back
Top