Heat equation, initial and boundary numerical conditions

LMZ
Messages
10
Reaction score
0
Hello to all!

Homework Statement


for testing my program i need a heat equation with numerical initial and boundary conditions:
Derivative[2, 0][f][x, t] == Derivative[0, 1][f][x, t]

f[x, 0] == numerical
f[0, t] == numerical, f[numerical, t] == numerical


PS. to moders: please, if you delete my message, PM me what I've done wrong, thanks!
 
Physics news on Phys.org
It's not clear what you are asking. You know what the heat equation is, I presume. Why can't you just make up arbitrary initial and boundary values yourself?
 
yeap! i think i know what is heat equation: http://en.wikipedia.org/wiki/Heat_equation#Solving_the_heat_equation_using_Fourier_series

for example if i put these:
Code:
init = f[x, 0] == 1
bc = {f[0, t] == 0, f[1, t] == 0}

in mathematica i got this warning:
A warning is generated in this example because the initial conditions and boundary conditions give two different values for the value of f[0,0].

that's why i need correct example!
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top