|
[Sponsors] | |||||
|
|
|
#1 |
|
Guest
Posts: n/a
|
Hi, im using Fluent6. i want to input the source term which is varying with time. just the source term, the boundary conditions are not changing. i have the datas of how the source term is changing with time. how do i input the source term?
it would be a great help if anyone would lead me the way. regards bikash |
|
|
||
|
|
|
#2 |
|
Guest
Posts: n/a
|
I believe the only way that you can achieve this is with a UDF. If that is the case and you have not created a UDF before then you are faced with a decision of either finding someone who will make one for you, possiable for a fee, or learning UDF programming and doing it yourself.
Check out the UDF manual for Fluent 6. |
|
|
||
|
|
|
#3 |
|
Guest
Posts: n/a
|
hi andrew
thanks a lot for ur advice. let me try the UDF, hope i can do something. thank you bikash |
|
|
||
|
|
|
#4 |
|
Guest
Posts: n/a
|
bikash,
take a look at the following udf for varying temperature at a boundary. your udf will look similar but it will act on the source term. /************************************************** ********************/ /* unsteady.c */ /* UDF for specifying a transient velocity profile boundary condition */ /************************************************** ********************/ #include "udf.h" DEFINE_PROFILE(unsteady_temp, thread, position) { face_t f; begin_f_loop(f, thread) { real t = RP_Get_Real("flow-time"); F_PROFILE(f, thread, position) = 350. + 5.0*t; } end_f_loop(f, thread) } |
|
|
||
|
|
|
#5 |
|
Guest
Posts: n/a
|
hi thanks a lot for ur help.
regards bikash |
|
|
||
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Transient conduction possible in fluent? | jlefevre76 | FLUENT | 2 | February 5, 2013 09:53 |
| Moddeling solid settlement in water tank steady state or transient? | 88phil88 | CFX | 1 | March 9, 2011 18:45 |
| FSI Transient Thermal Analysis | Abduri | CFX | 0 | December 8, 2008 20:00 |
| Multiple Solid Domains - Interfaces | Scott | CFX | 8 | July 31, 2008 15:20 |
| CFX4.3 -build analysis form | Chie Min | CFX | 5 | July 12, 2001 23:19 |