|
[Sponsors] |
May 12, 2020, 10:42 |
Export profil every time step
|
#1 |
New Member
Join Date: Jul 2019
Posts: 23
Rep Power: 7 |
Hey guys,
im currently working on my master thesis. Im simulating a combustion which needs a lot of time. Therefore I want to export a Profil in fluent, which includes the x-, y-, z-coordinates, velocities and temperature at a certain plane at every timestep. This Profil should be used in another case as boundary condition. Is it possible to get these informations in just one file? Thanks for helping Simon |
|
May 12, 2020, 10:52 |
Profiles
|
#2 |
Senior Member
|
Doable but not using standard approach. However, how do you plan on using merged profiles?
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 12, 2020, 11:23 |
|
#3 |
New Member
Join Date: Jul 2019
Posts: 23
Rep Power: 7 |
My idea is that I first simulate the entire combustion chamber and then cut out a cuboid and then only calculate this new small region. For this I need the time-dependent boundary conditions of the cuboid's walls.
I tried a execute command, that writes every second a Profil. But the problem is, that this file has a constant name and after every second fluent wants to overwrite or cancel the new data. my execute command: file/write-profile/ profil-name interior-fluid_domain() temperature What is your suggestion? |
|
May 12, 2020, 11:27 |
Time Dependent BC
|
#4 |
Senior Member
|
You cannot apply time-dependent profile using profile files. Profiles are either time-dependent or space-dependent, not both. So, you need to export profiles separately for each time-step. Modify your command to include time-step in the file name. So, instead of using profile-name, use profile-name_%t. %t is automatically replaced by time-step and you will end up having a lot of different profile files.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 12, 2020, 11:38 |
|
#5 |
New Member
Join Date: Jul 2019
Posts: 23
Rep Power: 7 |
Perfect, it worked thanks a lot
And what would be the smartest way to read these files? also a execute command which reads and sets the boundary condition after every second? |
|
May 12, 2020, 11:45 |
Reading
|
#6 |
Senior Member
|
Yes, you can read it same way. You only need to set bc once. After that, just keep on reading profiles every time-step. No need to set the bc again.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 13, 2020, 05:44 |
|
#7 |
New Member
Join Date: Jul 2019
Posts: 23
Rep Power: 7 |
Thanks a lot for helping.
To read the files the same way didnt work. When I want to read the file: name_%t, fluent says that the file does not exist |
|
May 13, 2020, 06:08 |
Format Specifier
|
#8 |
Senior Member
|
%t and %i can be used for writing but not for reading a file. You have to use scheme command to read those files.
(ti-menu-load-string (format #f "file read-profile name_~04d.prof" (rpgetvar 'time-step))) where you need to replace name_ with actual basename. 04 specifies number of 0s before value at the end. So, if the file name is name_0003.prof, then the command above will read it. If it is 00003, then use 05 in place of 04.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 13, 2020, 06:38 |
|
#9 |
New Member
Join Date: Jul 2019
Posts: 23
Rep Power: 7 |
Thank you, it worked
I see there is so much more to learn in fluent |
|
May 13, 2020, 08:57 |
|
#10 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
Hello
i am working on gas-solid fluidization and want to save volume fraction of solid for each second. How it can be done in fluent kindly help me. |
|
May 13, 2020, 09:45 |
Solid Volume Fraction
|
#11 |
Senior Member
|
For that, you don't need anything special. Just setup a volume monitor under Report Definitions. However, in a fluidized bed, you don't expect solid volume fraction to change.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 15, 2020, 07:52 |
|
#12 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
Hello!
I want to know how to calculate RMS of bed pressure fluctuations in fluidization bed during simulation using Ansys Fluent????????? |
|
May 15, 2020, 08:07 |
Rms
|
#13 |
Senior Member
|
RMS values over space or over time. If it is over time, then you need to run transient simulation with statistical sampling enabled. Then, Fluent will directly report RMS and mean values. If you have already run a transient simulation and did not enable sampling, but you have saved intermediate files, then you can determine RMS manually or using CFDPost.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 15, 2020, 14:12 |
|
#14 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
Thank you Vinerm
actually i am beginner on Ansys fluent and i have assigned a task to plot a standard deviation (pascal) vs superficial gas velocity(independent variable) in fluidization column. someone said it is rms bed fluctuation, so kindly guide me can it be rms value or something else..... also tell how standard deviation can find using fluent. |
|
May 15, 2020, 15:28 |
Rms
|
#15 |
Senior Member
|
Yes, rms and standard deviation are same. However, you need data to determine that. And data collection requires transient simulation. Once you setup a transient simulation, Fluent has an option under Run Calculation to enable sampling. Once sampling is enabled, RMS values are available for post-processing once the simulation is complete.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 16, 2020, 06:00 |
|
#16 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
How can i calculate slip velocity in fluidization colunm using fluent cfd??? guide in detail with steps.
|
|
May 16, 2020, 07:08 |
Slip Velocity
|
#17 |
Senior Member
|
Just take a difference of velocities of primary and secondary phase.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 17, 2020, 06:11 |
|
#18 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
How i can judge that in fluidization steady state is reached or not doing simulation on Ansys Fluent
|
|
May 17, 2020, 17:16 |
Fluidization
|
#19 |
Senior Member
|
If it is steady, it is not fluidized. Fluidization is an inherently unsteady phenomenon. However, you can certainly look at statistical steadiness. For that, you can look at various fields, such as, average velocity of solids or the average height of fluidized zone. If these fields are varying with a certain frequency, then you can consider the fluidization to be statistically steady.
__________________
Regards, Vinerm PM to be used if and only if you do not want something to be shared publicly. PM is considered to be of the least priority. |
|
May 28, 2020, 06:54 |
|
#20 |
New Member
Hassan
Join Date: May 2020
Posts: 20
Rep Power: 6 |
Hello
i want to create a custom field function for the slip velocity in ansys fluent can any body guide me in detail??? what values will use etc |
|
Tags |
boundary condition, every time step, export profil |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
courant number increases to rather large values | 6863523 | OpenFOAM Running, Solving & CFD | 22 | July 6, 2023 00:48 |
pimpleDyMFoam computation randomly stops | babapeti | OpenFOAM Running, Solving & CFD | 5 | January 24, 2018 06:28 |
mixerVesselAMI2D's mass is not balancing | sharonyue | OpenFOAM Running, Solving & CFD | 6 | June 10, 2013 10:34 |
IcoFoam parallel woes | msrinath80 | OpenFOAM Running, Solving & CFD | 9 | July 22, 2007 03:58 |
Could anybody help me see this error and give help | liugx212 | OpenFOAM Running, Solving & CFD | 3 | January 4, 2006 19:07 |