I am trying to solve the Heat Equation in 2D for a circular domain and I used the example attached, however, for some reason I do not get any answer from it, and in principle, it seems that I am following the same steps as in the original document from wolfram tutorials. Any help will be much appreciated. I am using version 11.1.1
If the region is becoming irregular, like the one, in the picture attached, is there a way in Mathematica to create irregular shapes by composing, subtracting images?
I am trying to solve the heat equation inside and outside a region, boundary conditions are based on exchange of heat across the boundary separating both regions. I see NDSolveValue accepts BVP for a single function as well as a description of the region for that specific function, how could I implement the solution with NDSolveValue inside a circle and outside and to match both solutions at the boundary with Mathematica?
NDSolve would return a rule which could be used like this. But in this case you are using NDSolveValue, which returns the solution as an Interpolating Function. So this is for direct use. This has not provided a rule for u, or even a value for u. All it has done is assign a value to bvpdisk, which is the interpolating function.
thank you once again, got it.
Your NDSolveValue assigns the solution to bvpdisk, but then you plot u[t,x,y}.
Plot3D[bvpdisk[0.2, x, y], {x, y} \[Element] omega, Mesh -> All]