CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

Error making a new utility code: "cyclicAMILduInterface.H: No such file or directory"

Register Blogs Community New Posts Updated Threads Search

Like Tree26Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 11, 2018, 03:21
Default
  #21
Member
 
Vince
Join Date: Mar 2017
Posts: 45
Rep Power: 9
hyFoam is on a distinguished road
Hi,


Please open a new thread with those errors then.
For info, you'll find on my github a function object to calculate the Stanton number from the wall heat flux in OF-v1706. You could start from that.

https://github.com/vincentcasseau/hy...No/StantonNo.C


And here's how you would use it:
https://github.com/vincentcasseau/hy...faceQuantities
https://github.com/vincentcasseau/hy...ceCoefficients

calling surfaceQuantities in the controlDict and running in a terminal window:
Code:
<solverName> -postProcess -dict 'system/surfaceCoefficients' -latestTime
Thanks,
Vince
hyFoam is offline   Reply With Quote

Old   September 25, 2019, 16:37
Default hi Antimony
  #22
New Member
 
kevin
Join Date: Nov 2017
Posts: 1
Rep Power: 0
kevinlin is on a distinguished road
Hi Antimony

I solved it! Thank you very much:d:d
kevinlin is offline   Reply With Quote

Old   February 22, 2020, 06:12
Default
  #23
Member
 
Ashish Magar
Join Date: Jul 2016
Location: Mumbai, India
Posts: 81
Rep Power: 9
ashishmagar600 is on a distinguished road
Sorry posted on the wrong thread.
ashishmagar600 is offline   Reply With Quote

Old   April 2, 2020, 11:39
Default
  #24
Senior Member
 
Alejandro
Join Date: Jan 2014
Location: Argentina
Posts: 128
Rep Power: 12
ancolli is on a distinguished road
Quote:
Originally Posted by Gbaz View Post
Thanks for your reply. No I didn't fix it.
I am facing the same problem when using openFoam dev. did u solve ur problem?
ancolli is offline   Reply With Quote

Old   April 23, 2020, 07:18
Default
  #25
Member
 
Kabir Shariff
Join Date: Oct 2016
Location: France
Posts: 53
Rep Power: 9
Kbshariff is on a distinguished road
Dear foamers,


I have a similiar error, I want to add the foamcalcex on OF 7.


I am a newbie, I make directory is not clear for me.



i need you assistance please.



Here is the error message


~/foamcalcex/postProcessing ~/foamcalcex
+ wmake libo postCalc
wmake libo postCalc
+ wmake libso foamCalcFunctionsEx
wmake libso foamCalcFunctionsEx
g++ -std=c++11 -m64 -Dlinux64 -DWM_ARCH_OPTION=64 -DWM_DP -DWM_LABEL_SIZE=32 -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor -Wno-unused-parameter -Wno-invalid-offsetof -Wno-attributes -O3 -DNoRepository -ftemplate-depth-100 -I/opt/openfoam7/src/finiteVolume/lnInclude -IlnInclude -I. -I/opt/openfoam7/src/OpenFOAM/lnInclude -I/opt/openfoam7/src/OSspecific/POSIX/lnInclude -fPIC -c calcType/calcType.C -o Make/linux64GccDPInt32Opt/calcType/calcType.o
In file included from /opt/openfoam7/src/finiteVolume/lnInclude/ddtScheme.C:30:0,
from /opt/openfoam7/src/finiteVolume/lnInclude/ddtScheme.H:357,
from /opt/openfoam7/src/finiteVolume/lnInclude/fvcDdt.C:28,
from /opt/openfoam7/src/finiteVolume/lnInclude/fvcDdt.H:250,
from /opt/openfoam7/src/finiteVolume/lnInclude/fvc.H:44,
from /opt/openfoam7/src/finiteVolume/lnInclude/fvCFD.H:8,
from calcType/calcType.H:48,
from calcType/calcType.C:26:
/opt/openfoam7/src/finiteVolume/lnInclude/cyclicAMIFvPatch.H:39:10: fatal error: cyclicAMILduInterface.H: No such file or directory
#include "cyclicAMILduInterface.H"
^~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
/opt/openfoam7/wmake/rules/General/transform:25: recipe for target 'Make/linux64GccDPInt32Opt/calcType/calcType.o' failed
make: *** [Make/linux64GccDPInt32Opt/calcType/calcType.o] Error 1



regards,


Kabir
Kbshariff is offline   Reply With Quote

Old   October 14, 2020, 14:49
Default
  #26
Senior Member
 
Alejandro
Join Date: Jan 2014
Location: Argentina
Posts: 128
Rep Power: 12
ancolli is on a distinguished road
Quote:
Originally Posted by ancolli View Post
I am facing the same problem when using openFoam dev. did u solve ur problem?
Solved here: cyclicAMILduInterface.H OF 8 and dev
ancolli is offline   Reply With Quote

Old   October 29, 2021, 17:40
Default
  #27
New Member
 
zink
Join Date: Oct 2015
Posts: 29
Rep Power: 10
ansab_sindhu is on a distinguished road
I am also trying to fix the issue where it says
/opt/OpenFOAM/OpenFOAM-v1906/src/finiteVolume/lnInclude/cyclicAMIFvPatch.H:41:35: fatal error: cyclicAMILduInterface.H: No such file or directory
#include "cyclicAMILduInterface.H"

I have to calculate the heat transfer coefficient around cylinder. Any help will be appreciated
ansab_sindhu is offline   Reply With Quote

Old   July 7, 2023, 07:42
Default
  #28
Member
 
Uttam
Join Date: May 2020
Location: Southampton, United Kingdom
Posts: 34
Rep Power: 5
openfoam_aero is on a distinguished road
Quote:
Originally Posted by Antimony View Post
Hi All,

To anyone else who is still facing this problem (like I did for a couple of hours recently), please note that the solution given works, provided it is the first one included.

That is, if you have (for example)

EXE_INC = \
-I$(LIB_SRC)/someLibrary

Change it to this:
EXE_INC = \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/someLibrary

The reason I type this is because I distinctly remember putting the original hint into the options file, but I still had errors. However, when I changed the order, it seemed to work.

Again, it might have been a one-off, but if anyone else faced the same issue, give this method a shot as well.

Thanks alexeym for the original solution!

Cheers,
Antimony
Thanks a lot, this worked for me
__________________
Best Regards
Uttam

-----------------------------------------------------------------

“When everything seem to be going against you, remember that the airplane takes off against the wind, not with it.” – Henry Ford.
openfoam_aero is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to calculate mass flow rate on patches and summation of that during the run? immortality OpenFOAM Post-Processing 104 February 16, 2021 08:46
what is swap4foam ?? AB08 OpenFOAM 28 February 2, 2016 01:22
Problem compiling a custom Lagrangian library brbbhatti OpenFOAM Programming & Development 2 July 7, 2014 11:32
Trouble compiling utilities using source-built OpenFOAM Artur OpenFOAM Programming & Development 14 October 29, 2013 10:59
Version 15 on Mac OS X gschaider OpenFOAM Installation 113 December 2, 2009 10:23


All times are GMT -4. The time now is 16:42.