Re: [deal.II] Building DEAL. II with an external dylib

2020-05-14 Thread Yang Liu
Thank you! This works. 在 2020年5月15日星期五 UTC+8上午1:59:38,Matthias Maier写道: > > > On Thu, May 14, 2020, at 06:19 CDT, Yang Liu > wrote: > > The /usr/local/hlibpro-2.8.1/lib/libhpro.dylib dynamic library > probably sets an incorrect rpath ("/lib/libhpro.dylib" instead of the > full path). > > -

Re: [deal.II] Building DEAL. II with an external dylib

2020-05-14 Thread Matthias Maier
On Thu, May 14, 2020, at 06:19 CDT, Yang Liu wrote: The /usr/local/hlibpro-2.8.1/lib/libhpro.dylib dynamic library probably sets an incorrect rpath ("/lib/libhpro.dylib" instead of the full path). - You might try to export the directory in DYLD_LIBRARY_PATH: export DYLD_LIBRARY_PATH="/u

Re: [deal.II] Incompressible Mooney-Rivlin/Neo-Hookean material

2020-05-14 Thread Wolfgang Bangerth
On 5/14/20 10:28 AM, navneet roshan wrote: Thank you for the response, Sorry, I did't put the precise question. My geometry is not deforming after first loading step, Is it locking behaviour? Do I need to give some special treatment to the incompressibility constraint? as some references sugges

Re: [deal.II] Incompressible Mooney-Rivlin/Neo-Hookean material

2020-05-14 Thread navneet roshan
Dear Prof. Thank you for the response, Sorry, I did't put the precise question. My geometry is not deforming after first loading step, Is it locking behaviour? Do I need to give some special treatment to the incompressibility constraint? as some references suggests using augmented lagrangian and u

Re: [deal.II] Building DEAL. II with an external dylib

2020-05-14 Thread Wolfgang Bangerth
On 5/14/20 5:19 AM, Yang Liu wrote: TARGET_LINK_LIBRARIES(step-6 /usr/local/hlibpro-2.8.1/lib/libhpro.dylib) /---/ The build succeeded. But an error occurs during runtime: dyld: Library not loaded: src/libhpro.dylib   Referenced from: /App

Re: [deal.II] Incompressible Mooney-Rivlin/Neo-Hookean material

2020-05-14 Thread Wolfgang Bangerth
Navneet, I think I'm not clear what precisely your question is. Are you hoping that we take a look at your code and debug it for you? Best WB On 5/13/20 11:38 PM, navneet roshan wrote: Dear Members, I changed step-44 and reduced the code to 2-field, results for 2-field and 3-field form

Re: [deal.II] Re: Evaluating FE-solution on distributed mesh, semi-Lagrangian method

2020-05-14 Thread Konrad Simon
Thank you, Bruno. :-) On Tuesday, May 12, 2020 at 2:50:35 PM UTC+2, Bruno Turcksin wrote: > > Konrad, > > There is nothing out of the box. However, deal.II uses p4est which can > use more that one layer of ghost cells. So you should take a look > there to see how hard it is to change the code.

[deal.II] Building DEAL. II with an external dylib

2020-05-14 Thread Yang Liu
Dear DEAL.II developers and users, Currently I would like to build DEAL.II with an external library on my macOS Mojave 10.14.5. I edited the cmakelist.txt file as follows: /---/ SET(TARGET "step-6") SET(TARGET_SRC ${TARGET}.cc ) CMAKE_MINIMU