|
[Sponsors] |
Strange results using AMI. Meshing with Ansys. |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 3, 2022, 17:58 |
Strange results using AMI. Meshing with Ansys.
|
#1 |
New Member
Anuar Giménez
Join Date: Feb 2022
Location: Spain
Posts: 15
Rep Power: 4 |
Hello,
I am trying to use the Arbitrary Rotating AMI case to simulate a polymer flow through a single screw extruder, and I would really appreciate any help. Previously, I have been able to successfully run the same case using the MRF approach, with good results. The geometry is shown bellow: Attachment 90568 The mesh was generated using ANSYS. Then, I used the topoSet utility to create the rotating and stationary cellZone, and also the faceZone needed to develop the AMI patches. The topoSetDict file is shown bellow: Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object topoSetDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // actions ( { name rotif; type cellSet; action new; source cylinderToCell; sourceInfo { p1 (0 0.004 0); p2 (0 0.043703 0); radius 0.00396; } } { name outerCells; type cellSet; action new; source cellToCell; sourceInfo { set rotif; } } { name outerCells; type cellSet; action invert; } { name rotif; type cellZoneSet; action new; source setToCellZone; sourceInfo { set rotif; } } { name rotifFace; type faceSet; action new; source cellToFace; sourceInfo { set rotif; option all; } } { name rotifFace; type faceSet; action subset; source cellToFace; sourceInfo { set outerCells; option all; } } { name rotif; type faceZoneSet; action new; source setsToFaceZone; sourceInfo { faceSet rotifFace; cellSet rotif; } } ); // ************************************************************************* // Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object createPatchDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // internalFacesOnly true; baffles { rotating { type faceZone; zoneName rotif; patches { master { name AMI1; type cyclicAMI; neighbourPatch AMI2; transform rotational; rotationAxis (0 1 0); rotationCentre (0 0 0); } slave { name AMI2; type cyclicAMI; neighbourPatch AMI1; transform rotational; rotationAxis (0 1 0); rotationCentre (0 0 0); } } } } // ************************************************************************* // Code:
#!/bin/sh cd ${0%/*} || exit 1 # Run from this directory # Source tutorial run functions . $WM_PROJECT_DIR/bin/tools/RunFunctions application=$(getApplication) runApplication fluentMeshToFoam AMI.msh #Create cellZones and faceZones for rotating mesh. Develop new AMI BC´s runApplication topoSet runApplication createBaffles -overwrite runApplication mergeOrSplitBaffles -split -overwrite # Renumbering for speeding up simulation runApplication renumberMesh -noFields -overwrite decomposePar pyFoamPlotRunner.py mpirun -np 6 rhoPimpleFoam -parallel echo "Done!" Attachment 90570 and the velocity field obtained in the rotating cellZone: Attachment 90569 As you can see, the velocity field seems wrong. In my MRF simulation the effect of the rotation due to the screw was very clear. With the AMI approach it seems that the highest velocity values are at the inlet, which is an unreal result. I hope anyone could give me some advice or correct me if there is any error. I have little experience using AMI. Kind Regards, Anuar R. Giménez El Amrani |
|
July 4, 2022, 17:53 |
|
#3 | |
New Member
Anuar Giménez
Join Date: Feb 2022
Location: Spain
Posts: 15
Rep Power: 4 |
Quote:
However, I need to run it in the OpenFoam-7 version, so im afraid that I can not use it. May I ask if anything about my AMI procedure or code looks strange to you? Kind Regards, Anuar |
||
Tags |
ami, ansys, mrf, openfoam |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[swak4Foam] reconstructPar error in MRFsimpleFoam (ami apprach) using GroovyBC velocity inlet | Krao | OpenFOAM Community Contributions | 3 | August 19, 2019 06:40 |
[ANSYS Meshing] Can start ANSYS meshing only one time on ubuntu 16.04 | Touré | ANSYS Meshing & Geometry | 2 | September 26, 2017 06:41 |
Meshing on hpc using ansys mesh | AS_Aero | CFX | 13 | April 3, 2017 20:05 |
2-way FSI in Ansys CFX 15 | LucasGasparino | CFX | 3 | August 6, 2015 04:17 |
Exporting results from CFX to ANSYS ?? | sohail ahmed | CFX | 1 | December 20, 2007 02:10 |