|
[Sponsors] |
Compiled library vs. inInclude Files, DSMC solver crashes after run |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 11, 2013, 11:30 |
Compiled library vs. inInclude Files, DSMC solver crashes after run
|
#1 |
New Member
Join Date: Apr 2013
Posts: 24
Rep Power: 13 |
Hi Foamers,
I hope this thread is not too long - I try to describe everything as detailed as possible so that it is clear what I am doing! I am completely new to OpenFOAM, DSMC and C++ Programming. I am writing my master thesis and I need to perform some simulation with the DSMC solver of OpenFOAM. My predecessor applied some changes to the DSMC library so that a VariableSoftSphere collision model is included. I received the new library source files (the complete src/lagrangian/dsmc folder from OF version 2.0.1) from him and wanted to include them into my personal, newer version of OpenFOAM (2.1.1.). I dont want to override my original library so I compiled the new library with "wmake -libso" as "lib_mydsmc". I did this by changing the last line of the "files" file in the make folder reads: "LIB = $(FOAM_USER_LIBBIN)/libmy_dsmc" Everything else I left unchanged, because as far as I understood these are the other libraries (options file) and source files (files file) which are needed in order to compile the library, right? Okay, so in order to have a solver which uses the NEW library and not the old one, I thought I recompile the dsmcFoam solver, but applied some changes first, so that it is linked to the new library (I called my new dsmcFoam solver dsmcReactionFoam, because at the end I want to change it in a way that it can simulate chemical Reactions): "files": Code:
dsmcReactionFoam.C EXE = $(FOAM_USER_APPBIN)/dsmcReactionFoam Code:
EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/lagrangian/basic/lnInclude \ -I$(WM_PROJECT_USER_DIR)/src/lagrangian/dsmc/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude EXE_LIBS = \ -L$(FOAM_USER_LIBBIN)\ -lmeshTools \ -lfiniteVolume \ -llagrangian \ -lmy_dsmc Okay, 2 questions: 1. Why do I need to tell wmake where to find the header files of my dsmc library source if I link the solver to the very same compiled library anyway? That seems to be redundant? What I mean is in "EXE_INC" I tell wmake that the header files are in " -I$(WM_PROJECT_USER_DIR)/src/lagrangian/dsmc/lnInclude \" and then I say he should also link to "my_dsmc" in "EXE_LIBS"... Am I misunderstanding something? 2. Is the procedure correct so far? I ask the second question because if I run a case file with dsmcReactionFoam everything works perfectly fine.. BUT, when the simulation is finished the solver crashes with the following error: Code:
*** glibc detected *** dsmcReactionFoam: double free or corruption (!prev): 0x0000000004870250 *** ======= Backtrace: ========= /lib/libc.so.6(+0x78bb6)[0x7ff2ac56cbb6] /lib/libc.so.6(cfree+0x73)[0x7ff2ac573483] dsmcReactionFoam(_ZN4Foam4wordD1Ev+0x39)[0x43ce89] /lib/libc.so.6(__cxa_finalize+0xa0)[0x7ff2ac52d6e0] /home/pesch/OpenFOAM/pesch-2.1.1/platforms/linux64GccDPOpt/lib/libmy_dsmc.so(+0xc946)[0x7ff2ad986946] Sorry if my questions are a little bit stupid or something, but anyways, I would be so happy if anybody would like to answer. Best wishes Georg |
|
April 14, 2013, 10:31 |
|
#2 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Greetings Georg and welcome to the forum!
I started reading your post and I had a déjà-vu... but after looking for what I was vaguely remembering, I found this thread: http://www.cfd-online.com/Forums/ope...ion-fault.html I think it addresses part of the problems your having. To answer your questions:
Bruno
__________________
|
|
April 14, 2013, 14:08 |
|
#3 |
New Member
Join Date: Apr 2013
Posts: 24
Rep Power: 13 |
Hey Bruno, thank you so much for your very succint and useful answer and for the link to the other thread.
Basically, if I'm understanding you right in the other thread - I have an object overload leading to my error because of the functions {...} part in the controlDict file? Will it make any difference if I comment these lines out - I mean apart from that my error might disappear will I have any restraints in functionality? Whats the use of these section? A "libs (" part is btw not present my any controlDict that I checked. |
|
April 14, 2013, 14:15 |
|
#4 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Georg,
The "functions" part in "system/controlDict" are only used for post-processing. They should not affect the solver/solution itself... or at least I don't think it should. Are you able to isolate which function object is triggering the object overload? Because by knowing which one to look for, we should be able to find out what can be done to avoid this problem. Probably the library/function object will have to be cloned as well and hard-code it to link to your own DSMC library Best regards, Bruno
__________________
|
|
April 14, 2013, 14:42 |
|
#5 |
New Member
Join Date: Apr 2013
Posts: 24
Rep Power: 13 |
Hi Bruno, how to find that out? Trail and error? Comment one out and check again?
|
|
April 14, 2013, 14:59 |
|
#6 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Yep, exactly. Trial and error... the good old "divide and conquer" strategy
__________________
|
|
April 15, 2013, 11:07 |
|
#7 |
New Member
Join Date: Apr 2013
Posts: 24
Rep Power: 13 |
Alright, this is how the functions part in my controlDict file looks like:
Code:
functions { dsmcFields1 { type dsmcFields; functionObjectLibs ( "libutilityFunctionObjects.so" ); enabled true; outputControl outputTime; } fieldAverage1 { type fieldAverage; functionObjectLibs ( "libfieldFunctionObjects.so" ); outputControl outputTime; resetOnOutput off; fields ( rhoN { mean on; prime2Mean off; base time; } rhoM { mean on; prime2Mean off; base time; } dsmcRhoN { mean on; prime2Mean off; base time; } momentum { mean on; prime2Mean off; base time; } linearKE { mean on; prime2Mean off; base time; } internalE { mean on; prime2Mean off; base time; } iDof { mean on; prime2Mean off; base time; } q { mean on; prime2Mean off; base time; } fD { mean on; prime2Mean off; base time; } ); } forces1 { type forces; enabled true; functionObjectLibs ( "libforces.so" ); outputControl outputTime; patches ( obstacle ); directForceDensity true; fDName fDMean; CofR ( 0 0 0 ); log on; } } 1.) If I erase "dsmcFields1" the case is calculated without any errors. 2.) If I erase "fieldsAverage1" I receive the the following error: Code:
--> FOAM FATAL ERROR: request for volScalarField rhoNMean from objectRegistry region0 failed available objects of type volScalarField are 9 ( boundaryT internalE rhoN dsmcSigmaTcRMax iDof dsmcRhoN q linearKE rhoM ) From function objectRegistry::lookupObject<Type>(const word&) const in file /home/opencfd/OpenFOAM/OpenFOAM-2.1.1/src/OpenFOAM/lnInclude/objectRegistryTemplates.C at line 131. Finally if I comment out forces1 it crashes with the same error as I posted originally at the beginning but doesn't calculate the forces1.dat file (which is full of (0 0 0) anyway.... ) So I guess the solver crash at the end of the calculation is somehow caused by the function dsmcFields1 .... Can you give me any hints on what that means? Thank you so much for your time! Georg |
|
April 17, 2013, 17:36 |
|
#8 | |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Georg,
I knew one of the functions objects had to be the guilty party And fortunately, it's the one that is almost screaming at us saying: Quote:
Code:
dsmcFields1 { type dsmcFields; functionObjectLibs ( "libutilityFunctionObjects.so" ); enabled true; outputControl outputTime; } The solution: find the source code for this function object library, clone it, rename it and adapt as you've done to the other library and application, and tell it to link to your own "dsmc" library. Then on the "controlDict" file, reference your version of this library. And don't forget: you can no longer reference the original ones, unless you want to see these crashes again As for figuring out where is the source code for this library, try this command: Code:
find $FOAM_SRC -name "files" | xargs grep -sl "utilityFunctionObjects" Bruno
__________________
|
||
April 18, 2013, 08:17 |
|
#9 |
New Member
Join Date: Apr 2013
Posts: 24
Rep Power: 13 |
Hi Bruno,
thank you very much. That was pretty revealing! Everything works fine now! Best regards Georg |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Edit/stop run in progress without solver manager | N.R. | CFX | 12 | June 17, 2015 03:13 |
Help, can't stop solver run...Windows OS | ben akih | CFX | 2 | November 13, 2006 11:05 |
Solver crashes only while writing a bak file | hagupta | CFX | 1 | April 11, 2006 19:10 |
Solver error in Parallel run 255 | M | CFX | 0 | February 28, 2006 04:38 |
CFX 5.5 | Roued | CFX | 1 | October 2, 2001 17:49 |