CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Community Contributions

[waves2Foam] new to using irregular waves

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 13, 2017, 12:56
Default new to using irregular waves
  #1
Member
 
Chia
Join Date: Jan 2016
Location: Singapore
Posts: 30
Rep Power: 10
chia87 is on a distinguished road
Dear Foamers,

I'm quite new to using irregular waves, there seemed to be some problems(elevation-related problems) with my focusing waves

wondered whats the problem

blockMesh as follows
Quote:
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
(0 -1 0)
(11 -1 0)
(16 -1 0 )
(0 -0.12 0)
(11 -0.12 0)
(16 -0.12 0)
(0 0.16 0)
(11 0.16 0)
(16 0.16 0)
(0 0.42 0)
(11 0.42 0)
(16 0.42 0)

(0 -1 2)
(11 -1 2)
(16 -1 2)
(0 -0.12 2)
(11 -0.12 2)
(16 -0.12 2)
(0 0.16 2)
(11 0.16 2)
(16 0.16 2)
(0 0.42 2)
(11 0.42 2)
(16 0.42 2)
);

blocks
(
hex (0 1 4 3 12 13 16 15) (660 32 1) simpleGrading (1 0.0094518 1)
hex (1 2 5 4 13 14 17 16) (50 32 1) simpleGrading (1 0.0094518 1)
hex (3 4 7 6 15 16 19 18) (660 420 1) simpleGrading (1 1 1)
hex (4 5 8 7 16 17 20 19) (50 420 1) simpleGrading (1 1 1)
hex (6 7 10 9 18 19 22 21) (660 25 1) simpleGrading (1 56.7 1)
hex (7 8 11 10 19 20 23 22) (50 25 1) simpleGrading (1 56.7 1)
);
did used this same meshing for my combinedWaves simulation (10 waves, with wave heights ranging from 1.2cm to 3.7cm) and was fine

My control dict as follow
Quote:
application interFoam;

startFrom latestTime;

startTime 0;

stopAt endTime;

endTime 9;

deltaT 0.0004;

writeControl adjustableRunTime;

writeInterval 0.25;

purgeWrite 0;

writeFormat ascii;

writePrecision 6;

writeCompression uncompressed;

timeFormat general;

timePrecision 6;

runTimeModifiable yes;

adjustTimeStep yes;

maxCo 0.2;

maxAlphaCo 0.3;

maxDeltaT 1;
My JONSWAP wave properties as below
Quote:
seaLevel 0.00;

// A list of the relaxation zones in the simulation. The parameters are given
// in <name>Coeffs below.
relaxationNames (inlet outlet);

initializationName outlet;

inletCoeffs
{
waveType irregular;
spectrum JONSWAP;
N 55;
Tsoft 0;
Tp 1.25;
gamma 3.3;
depth 1;
direction (1 0 0 );
phaseMethod focusingPhase;
focusTime 14;
focusPoint (8 0 0);
Hs 0.033;

frequencyAxis
{
writeSpectrum true; // false = default value

discretisation equidistantFrequencyAxis; // cosineStretchedFrequencyAxis;

lowerFrequencyCutoff 0.1; // Not required. Default: 1/3fp
upperFrequencyCutoff 2; // Not required. Default: 3fp
}







relaxationZone
{
relaxationScheme Spatial;
relaxationShape Rectangular;
beachType Empty;
relaxType INLET;
startX (0 0.0 -1);
endX (4 0.0 1);
orientation (1.0 0.0 0.0);
}
};





outletCoeffs
{
waveType potentialCurrent;
U (0 0 0);
Tsoft 0;

relaxationZone
{
relaxationScheme Spatial;
relaxationShape Rectangular;
beachType Empty;
relaxType OUTLET;
startX (11 0.0 -1);
endX (16 0.0 1);
orientation (1.0 0.0 0.0);
}
};
screenshot of my surface elevation at point of focusing, seems like no waves are produced, well, i did see some microwaves producing in paraFoam,
Screenshot from 2017-03-13 17-21-59.png

any inputs would be greatly appreicated thanks all

- chia
chia87 is offline   Reply With Quote

Old   March 13, 2017, 13:51
Default
  #2
ngj
Senior Member
 
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,900
Rep Power: 37
ngj will become famous soon enoughngj will become famous soon enough
Hi Chia,

I suppose it is because your focus time is larger than your end time. You could also verify that the expected amplitudes and phases are written to waveProperties.

Kind regards

Niels
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request.
ngj is offline   Reply With Quote

Old   March 14, 2017, 10:09
Default
  #3
Member
 
Chia
Join Date: Jan 2016
Location: Singapore
Posts: 30
Rep Power: 10
chia87 is on a distinguished road
Quote:
Originally Posted by ngj View Post
Hi Chia,

I suppose it is because your focus time is larger than your end time. You could also verify that the expected amplitudes and phases are written to waveProperties.

Kind regards

Niels
Thanks Niels, for the reply

I tried re-running a regular wave simulation, and found that no waves were generated. I admit i think I may had compile wavefoam wrongly on my new working environment.
I'm actually working on a new environment and I tried compiling wavefoam by using of301

I tried to copy my simulations that Ive successfully used in my old workplace using of301, and my current work station doesnt recognize the inlet boundary type of alpha1.org (doesnt recognize waveAlpha) ,

boundaryField
{
inlet
{
type waveAlpha;
refValue uniform 0;
refGrad uniform 0;
valueFraction uniform 1;
value uniform 0;
}

Hence, i tried changing it to fixedValue and no waves were made, thats prolly the case im facing,

I went back to execute ./Allwmake , this is what I got

Quote:
=====================================
ENVIRONMENTAL VARIABLES
=====================================
EXTBRANCH=0
FOAMEXTENDPROJECT=0
OFPLUSBRANCH=0
WAVES_APPBIN=/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin
WAVES_DIR=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam
WAVES_GSL_INCLUDE=/usr/include
WAVES_GSL_LIB=/usr/lib64
WAVES_LIBBIN=/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/lib
WAVES_POST=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/applications/utilities/postProcessing
WAVES_PRE=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/applications/utilities/preProcessing
WAVES_SOL=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/applications/solvers/solvers301
WAVES_SRC=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/src
WAVES_TUT=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/tutorials
WAVES_UTIL=/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/applications/utilities
WAVES_XVERSION=0
WM_PROJECT_VERSION_NUMBER=301

=====================================
COMPILE LAPACK-3.3.1
=====================================

lapack-3.3.1 has already been compiled

=====================================
COMPILE SPARSKIT2
=====================================

SPARSKIT2 has already been compiled

=====================================
COMPILE OCEANWAVE3D
=====================================

Pull changes from the OceanWave3D git repository ...

*** Please tell me who you are.

Run

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'chia@chia-VirtualBox.(none)')
Cannot save the current index state
No stash found.

OceanWave3D has already been compiled

/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/ThirdParty
=====================================
COMPILE FENTON4FOAM
=====================================

fenton4Foam has already been compiled

=====================================
COMPILE LIBRARY
=====================================

/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/src/waves2Foam
'/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/lib/libwaves2Foam.so' is up to date.
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/src/waves2FoamProcessing
'/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/lib/libwaves2FoamProcessing.so' is up to date.
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/src/waves2FoamSampling
'/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/lib/libwaves2FoamSampling.so' is up to date.
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/src/waves2FoamPorosity
'/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/lib/libwaves2FoamPorosity.so' is up to date.

=====================================
COMPILE SOLVERS
=====================================
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/solvers/solvers301
g++ -m64 -Dlinux64 -DWM_ARCH_OPTION=64 -DWM_DP -DWM_LABEL_SIZE=64 -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor -Wno-unused-parameter -Wno-invalid-offsetof -O3 -DNoRepository -ftemplate-depth-100 -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/transportModels/twoPhaseMixture/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/transportModels -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/transportModels/incompressible/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/transportModels/interfaceProperties/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/TurbulenceModels/turbulenceModels/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/TurbulenceModels/incompressible/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/transportModels/immiscibleIncompressibleTwoPhaseMixture/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/finiteVolume/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/fvOptions/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/meshTools/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/sampling/lnInclude -DOFVERSION=300 -DEXTBRANCH=0 -DOFPLUSBRANCH=0 -DXVERSION=0 -I/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/src/waves2Foam/lnInclude -I/home/chia/OpenFOAM/chia-3.0.1/applications/utilities/waves2Foam/src/waves2FoamSampling/lnInclude -I/usr/include -IlnInclude -I. -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/OpenFOAM/lnInclude -I/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/OSspecific/POSIX/lnInclude -fPIC -c waveFoam.C -o /home/chia/OpenFOAM/OpenFOAM-3.0.1/platforms/linux64GccDPInt64Opt/applications/utilities/waves2foam/applications/solvers/solvers301/waveFoam.o
In file included from waveFoam.C:73:0:
readWaveProperties.H: In function ‘int main(int, char**)’:
readWaveProperties.H:1:1: error: ‘S’ was not declared in this scope
S Info << "\nReading waveProperties" << endl;
^
In file included from waveFoam.C:84:0:
CourantNo.H:39:29: error: ‘phi’ was not declared in this scope
fvc::surfaceSum(mag(phi))().internalField()
^
In file included from waveFoam.C:98:0:
setRDeltaT.H:63:33: error: ‘phi’ was not declared in this scope
fvc::surfaceSum(mag(phi))().dimensionedInternalFie ld()
^
setRDeltaT.H:64:33: error: ‘rho’ was not declared in this scope
/((2*maxCo)*mesh.V()*rho.dimensionedInternalField() )
^
setRDeltaT.H:80:17: error: ‘reaction’ was not declared in this scope
mag(reaction->Sh())/(alphaTemp*rho*thermo.Cp()*T)
^
setRDeltaT.H:80:44: error: ‘rho’ was not declared in this scope
mag(reaction->Sh())/(alphaTemp*rho*thermo.Cp()*T)
^
setRDeltaT.H:80:48: error: ‘thermo’ was not declared in this scope
mag(reaction->Sh())/(alphaTemp*rho*thermo.Cp()*T)
^
In file included from waveFoam.C:102:0:
CourantNo.H:39:29: error: ‘phi’ was not declared in this scope
fvc::surfaceSum(mag(phi))().internalField()
^
In file included from waveFoam.C:103:0:
alphaCourantNo.H:44:9: error: ‘mixture’ was not declared in this scope
mixture.nearInterface()().internalField()
^
alphaCourantNo.H:45:29: error: ‘phi’ was not declared in this scope
*fvc::surfaceSum(mag(phi))().internalField()
^
alphaCourantNo.H:32:8: warning: unused variable ‘maxAlphaCo’ [-Wunused-variable]
scalar maxAlphaCo
^
In file included from waveFoam.C:116:0:
/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/finiteVolume/lnInclude/alphaControls.H:1:51: error: ‘alpha1’ was not declared in this scope
const dictionary& alphaControls = mesh.solverDict(alpha1.name());
^
In file included from waveFoam.C:117:0:
alphaEqnSubCycle.H:11:32: error: ‘phi’ was not declared in this scope
dimensionedScalar("0", phi.dimensions(), 0)
^
alphaEqnSubCycle.H:16:38: error: ‘UdmModel’ was not declared in this scope
mesh.Sf() & fvc::interpolate(UdmModel.Udm())
^
In file included from alphaEqnSubCycle.H:40:0,
from waveFoam.C:117:
alphaEqn.H:29:35: error: ‘talphaPhiCorr0’ was not declared in this scope
if (alphaApplyPrevCorr && talphaPhiCorr0.valid())
^
alphaEqn.H:38:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:46:9: error: ‘talphaPhiCorr0’ was not declared in this scope
talphaPhiCorr0 = talphaPhiUD;
^
alphaEqn.H:77:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:101:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:109:9: error: ‘talphaPhiCorr0’ was not declared in this scope
talphaPhiCorr0 = alphaPhi - talphaPhiCorr0;
^
alphaEqn.H:112:5: error: ‘alpha2’ was not declared in this scope
alpha2 = 1.0 - alpha1;
^
In file included from alphaEqnSubCycle.H:48:0,
from waveFoam.C:117:
alphaEqn.H:29:35: error: ‘talphaPhiCorr0’ was not declared in this scope
if (alphaApplyPrevCorr && talphaPhiCorr0.valid())
^
alphaEqn.H:38:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:46:9: error: ‘talphaPhiCorr0’ was not declared in this scope
talphaPhiCorr0 = talphaPhiUD;
^
alphaEqn.H:77:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:101:17: error: ‘mixture’ was not declared in this scope
mixture.alphaMax(),
^
alphaEqn.H:109:9: error: ‘talphaPhiCorr0’ was not declared in this scope
talphaPhiCorr0 = alphaPhi - talphaPhiCorr0;
^
alphaEqn.H:112:5: error: ‘alpha2’ was not declared in this scope
alpha2 = 1.0 - alpha1;
^
In file included from waveFoam.C:117:0:
alphaEqnSubCycle.H:57:28: error: ‘turbulence’ was not declared in this scope
- fvm::laplacian(turbulence->nut(), alpha1)
^
alphaEqnSubCycle.H:63:9: error: ‘alpha2’ was not declared in this scope
alpha2 = 1.0 - alpha1;
^
alphaEqnSubCycle.H:72:5: error: ‘rhoPhi’ was not declared in this scope
rhoPhi = alphaPhi*(rho1 - rho2) + phi*rho2;
^
alphaEqnSubCycle.H:72:24: error: ‘rho1’ was not declared in this scope
rhoPhi = alphaPhi*(rho1 - rho2) + phi*rho2;
^
alphaEqnSubCycle.H:72:31: error: ‘rho2’ was not declared in this scope
rhoPhi = alphaPhi*(rho1 - rho2) + phi*rho2;
^
alphaEqnSubCycle.H:73:5: error: ‘rho’ was not declared in this scope
rho = mixture.rho();
^
alphaEqnSubCycle.H:73:11: error: ‘mixture’ was not declared in this scope
rho = mixture.rho();
^
waveFoam.C:119:13: error: ‘relaxing’ was not declared in this scope
relaxing.correct();
^
waveFoam.C:121:13: error: ‘mixture’ was not declared in this scope
mixture.correct();
^
In file included from waveFoam.C:123:0:
UEqn.H:3:18: error: ‘rho’ was not declared in this scope
fvm::ddt(rho, U)
^
UEqn.H:4:18: error: ‘rhoPhi’ was not declared in this scope
+ fvm::div(rhoPhi, U)
^
UEqn.H:5:9: error: ‘turbulence’ was not declared in this scope
+ turbulence->divDevRhoReff(U)
^
UEqn.H:19:21: error: ‘interface’ was not declared in this scope
interface.surfaceTensionForce()
^
UEqn.H:20:21: error: ‘ghf’ was not declared in this scope
- ghf*fvc::snGrad(rho)
^
UEqn.H:21:33: error: ‘p_rgh’ was not declared in this scope
- fvc::snGrad(p_rgh)
^
UEqn.H:26:9: error: ‘K’ was not declared in this scope
K = 0.5*magSqr(U);
^
In file included from waveFoam.C:128:0:
pEqn.H:12:51: error: ‘phi’ was not declared in this scope
+ fvc::interpolate(rho*rAU)*fvc::ddtCorr(U, phi)
^
pEqn.H:15:27: error: ‘p_rgh’ was not declared in this scope
adjustPhi(phiHbyA, U, p_rgh);
^
pEqn.H:21:13: error: ‘ghf’ was not declared in this scope
- ghf*fvc::snGrad(rho)
^
pEqn.H:44:31: error: ‘pRefCell’ was not declared in this scope
p_rghEqn.setReference(pRefCell, getRefCellValue(p_rgh, pRefCell));
^
In file included from waveFoam.C:128:0:
pEqn.H:62:22: error: ‘gh’ was not declared in this scope
p == p_rgh + rho*gh;
^
pEqn.H:70:13: error: ‘pRefValue’ was not declared in this scope
pRefValue - getRefCellValue(p, pRefCell)
^
pEqn.H:70:44: error: ‘pRefCell’ was not declared in this scope
pRefValue - getRefCellValue(p, pRefCell)
^
In file included from waveFoam.C:116:0:
/home/chia/OpenFOAM/OpenFOAM-3.0.1/src/finiteVolume/lnInclude/alphaControls.H:18:8: warning: unused variable ‘icAlpha’ [-Wunused-variable]
scalar icAlpha
^
/home/chia/OpenFOAM/OpenFOAM-3.0.1/wmake/rules/General/transform:8: recipe for target '/home/chia/OpenFOAM/OpenFOAM-3.0.1/platforms/linux64GccDPInt64Opt/applications/utilities/waves2foam/applications/solvers/solvers301/waveFoam.o' failed
make: *** [/home/chia/OpenFOAM/OpenFOAM-3.0.1/platforms/linux64GccDPInt64Opt/applications/utilities/waves2foam/applications/solvers/solvers301/waveFoam.o] Error 1

=====================================
COMPILE PRE-PROCESSING
=====================================
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/faceSetToSTL
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/faceSetToSTL'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/faceSetToSTL' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/faceSetToSTL'
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/relaxationZoneLayout
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/relaxationZoneLayout'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/relaxationZoneLayout' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/relaxationZoneLayout'
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveField
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveField'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/setWaveField' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveField'
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveParameters
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveParameters'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/setWaveParameters' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/setWaveParameters'
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/waveGaugesNProbes
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/waveGaugesNProbes'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/waveGaugesNProbes' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/preProcessing/waveGaugesNProbes'

=====================================
COMPILE POST-PROCESSING
=====================================
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/postProcessWaves2Foam
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/postProcessWaves2Foam'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/postProcessWaves2Foam' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/postProcessWaves2Foam'
/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/surfaceElevation
make[1]: Entering directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/surfaceElevation'
make[1]: '/home/chia/OpenFOAM/chia-3.0.1/platforms/linux64GccDPInt64Opt/bin/surfaceElevation' is up to date.
make[1]: Leaving directory '/home/chia/OpenFOAM/OpenFOAM-3.0.1/applications/utilities/waves2foam/applications/utilities/postProcessing/surfaceElevation'

=====================================
COMPILATION DONE
=====================================
it seems that in the waveFoam.C , there are alot of commands or items 'not declared' and i think that could be the root of the problem, any insights on how to proceed further?
thanks for your kind patience
chia87 is offline   Reply With Quote

Old   March 14, 2017, 11:09
Default
  #4
ngj
Senior Member
 
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,900
Rep Power: 37
ngj will become famous soon enoughngj will become famous soon enough
Hi,

You must have created the solver yourself, as 3.0.1 is not supported with solvers. You are likely missing files, but I cannot help in narrowing it down.

Kind regards

Niels
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request.
ngj 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
[waves2Foam] combined set of waves with waves2Foam blaise OpenFOAM Community Contributions 7 December 16, 2023 08:33
gravitational waves and capillary waves astroam COMSOL 0 August 15, 2015 16:49
gravitational waves and capillary waves astroam COMSOL 0 August 1, 2015 10:38
WAVES GENERATION IN A PORT OR BRAKE WAVES. important tecnicaf1 STAR-CCM+ 1 May 27, 2011 07:32
Terrible Mistake In Fluid Dynamics History Abhi Main CFD Forum 12 July 8, 2002 09:11


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