This is the entire code:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace dealii;
class Step3
{
Hello!
Thanks for the insight!
On Monday, May 11, 2020 at 9:17:30 PM UTC+5:30, Wolfgang Bangerth wrote:
>
>
> Huzaifa,
>
> > I am just starting out understanding the deal.II library. I was
> wondering how
> > complex a problem can deal.II solve. Like for example, if I wanted to
> analyze
> >
Huzaifa,
I am just starting out understanding the deal.II library. I was wondering how
complex a problem can deal.II solve. Like for example, if I wanted to analyze
a wheel hub and find out the maximum stress for a force at its wheel bolts,
would I be able to do it with deal.II?
I am sorry i
On 5/11/20 3:46 AM, Huzaifa Unjhawala wrote:
I had added the header file prior to the run. For more information, given
below is the snippet of the code :
void Step3::make_grid ()
{
GridGenerator::hyper_cube (triangulation, -1, 1);
triangulation.begin_active()->face(0)->set_boundary_id(1);
Konrad,
Unfortunately, you will need to do the communication yourself. You can only
evaluate the solution on cells that locally owned or on ghost cells.
Best,
Bruno
On Monday, May 11, 2020 at 6:26:47 AM UTC-4, Konrad Simon wrote:
>
> Dear all,
>
> I am currently working on a semi-Lagrangian me
Dear all,
I am currently working on a semi-Lagrangian method for an
advection-diffusion equation. During runtime I must evaluate the (known)
FE-solution at a previous time step but the mesh is distributed.
Problem: It can well be that I must evaluate the solution at a point that
is in a cell
I am just starting out understanding the deal.II library. I was wondering
how complex a problem can deal.II solve. Like for example, if I wanted to
analyze a wheel hub and find out the maximum stress for a force at its
wheel bolts, would I be able to do it with deal.II?
I am sorry if the questi
I had added the header file prior to the run. For more information, given
below is the snippet of the code :
void Step3::make_grid ()
{
GridGenerator::hyper_cube (triangulation, -1, 1);
triangulation.begin_active()->face(0)->set_boundary_id(1);
triangulation.refine_global (5);
std::cout