Solving u_x=(sin(x))*(u) in Fourier space

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
vector_problems
Messages
9
Reaction score
0
Does anyone know if it is possible to solve an equation of the type
u_x=(sin(x))*(u)
on a periodic domain using the fft.

I have tried methods using convolutions but have had no success

thanks in advance
 
Physics news on Phys.org
vector_problems said:
Does anyone know if it is possible to solve an equation of the type
u_x=(sin(x))*(u)
on a periodic domain using the fft.
What does u_x mean in the context of your problem? It could possibly mean the partial derivative of u with respect to x, or it could mean the x-component of a vector u.

Also, what are you trying to solve for?
vector_problems said:
I have tried methods using convolutions but have had no success

thanks in advance
 
sorry, should have been more clear. u_x is the partial derivative of u w.r.t. x and i am trying to solve for u,

du/dx=(sin(x))*(u)
 
Is u a function of any variables other than x? If so, your equation is an ordinary differential equation, and one that is separable and easy to solve analytically.
 
You have ux=sin(x)*u

Can't you rewrite it as: y'=y*sin(x)? Solve it as ODE and instead of writing the constant, just assume it's a function of the other variables.