[deal.II] Learning Finite Element Method

2016-11-06 Thread Divya Prakash
I have recently started working in the field of solid mechanics, particularly in the Material Point Method. But for understanding the MPM method, it is recommended that I have a good understanding of the finite element method. Some of the books I referred to are very much detailed and since I a

Re: [deal.II] Re: using .vtk file as initial condition

2016-11-06 Thread Wolfgang Bangerth
On 11/06/2016 06:43 PM, Anup Basak wrote: I shall be thankful if someone could tell me in details how to use 'save()' and 'load()' functions to save and load triangulation information and the nodal values of displacements, strains, stresses, and may be temperature (similar to step44) so that the

Re: [deal.II] Re: using .vtk file as initial condition

2016-11-06 Thread Jean-Paul Pelteret
Dear Anup, Probably the simplest way to find examples of the save and load functionality is to look through deal.II's unit tests . Here are a list of tests that are related to the save functionality $ grep --include=\*.{h,cpp,cc} -rnw '.' -e

Re: [deal.II] Re: using .vtk file as initial condition

2016-11-06 Thread Anup Basak
Hello all, I shall be thankful if someone could tell me in details how to use 'save()' and 'load()' functions to save and load triangulation information and the nodal values of displacements, strains, stresses, and may be temperature (similar to step44) so that they can be used as initial data

[deal.II] Meshworker

2016-11-06 Thread Sudarshan Kumar
In the following function I need to get the cell iterator of the corresponding cell. void Step12::integrate_face_term (DoFInfo& dinfo1, DoFInfo& dinfo2, { CellInfo& info1, CellInfo& info2) typename DoFHandler::cell_iterator cell=dinfo1

[deal.II] Re: Convergence problem arising for large number of DoFs

2016-11-06 Thread Hamed Babaei
Hi all, I am attaching the sequential and parallel codes as well as parameters.prm file. It would be appreciated if you could compare tangent_matrix (the system_matrix of the elasticity part of the problem) of parallel and sequential codes to find out where I have ruined the S.P.D condition th

Re: [deal.II] I am trying to configure deal.II with mpi, and pass it to cmake as $cmake -DDEAL_II_WITH_MPI=ON -DCMAKE_INSTALL_PREFIX=~/dealII ../dealii-8.4.1/

2016-11-06 Thread sudarshan kumar
Please see the whole output when i pass mpi on. -- This is CMake 2.8.12.2 -- -- Include /home/sudarshan/dealii-8.4.1/cmake/setup_external_macros.cmake -- Include /home/sudarshan/dealii-8.4.1/cmake/macros/macro_find_system_library.cmake -- Include /home/sudarshan/dealii-8.4.1/cmake/macros/macr

Re: [deal.II] I am trying to configure deal.II with mpi, and pass it to cmake as $cmake -DDEAL_II_WITH_MPI=ON -DCMAKE_INSTALL_PREFIX=~/dealII ../dealii-8.4.1/

2016-11-06 Thread Timo Heister
> I get the following error message at the end. Can you post what is output above the block that you posted? It should tell you why the configuration failed. -- Timo Heister http://www.math.clemson.edu/~heister/ -- The deal.II project is located at http://www.dealii.org/ For mailing list/foru

Re: [deal.II] maximum value of solution

2016-11-06 Thread hanks0227
Oh, I see. Thank you very much for your kind reply. Kyusik. -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II Us

Re: [deal.II] maximum value of solution

2016-11-06 Thread Praveen C
Hi You are finding maximum at the quadrature points of QGauss(2). When solution is saved, it is evaluated at uniformly distributed points by build_patches. So the two values may differ. To get same values as in your visualization, you can use a QTrapez and QIterated. This combination is explain