CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

UDF: Value too large for defined data type

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 18, 2015, 15:52
Default UDF: Value too large for defined data type
  #1
New Member
 
Join Date: Nov 2015
Posts: 4
Rep Power: 10
silvi is on a distinguished road
Hello!
I tried to interpret my inlet profile udf and it occurs an error:

cpp:inlet_profile_6.c: value too large for defined data type
Error:" inlet_profile_6.c" line1: syntax error.
we're using a terminal to launch fluent on a cluster. the version is fluent 13

and the udf is:


Quote:
#include "udf.h"
#define a0 3573.860361
#define a1 824.1014636
#define b1 848.3188461
#define a2 -72.89079078
#define b2 142.0899859
#define a3 -206.9491044
#define b3 38.05716879
#define a4 -35.63104124
#define b4 6.608799463
#define a5 -42.64628096
#define b5 -30.45040677
#define a6 1.44034143
#define b6 19.22563745

DEFINE_PROFILE(pressure_inlet,thread,id)
{
real omega, flow_time, pressure;
face_t f;
omega=(2*3.14)/0.8;
flow_time= CURRENT_TIME;
begin_f_loop (f,thread)
{
F_PROFILE(f,thread,id) = a0+a1*cos(omega*flow_time)+a2*cos(2*omega*flow_tim e)+a3*cos(3*omega*flow_time)+a4*cos(4*omega*flow_t ime)+a5*cos(5*omega*flow_time)+a6*cos(6*omega*flow _time)+b1*sin(omega*flow_time)+b2*sin(2*omega*flow _time)+b3*sin(3*omega*flow_time)+b4*sin(4*omega*fl ow_time)+b5*sin(5*omega*flow_time)+b6*sin(6*omega* flow_time);
}
end_f_loop (f,thread)
}
Thank you
silvi is offline   Reply With Quote

Reply

Tags
error, fluent, supercomputer, udf


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
decomposePar problem: Cell 0contains face labels out of range vaina74 OpenFOAM Pre-Processing 37 July 20, 2020 05:38
[OpenFOAM.org] compile error in dynamicMesh and thermophysicalModels libraries NickG OpenFOAM Installation 3 December 30, 2019 00:21
time step continuity problem in VAWT simulation lpz_michele OpenFOAM Running, Solving & CFD 5 February 22, 2018 19:50
Boundary Conditions MtnRunBeachBum OpenFOAM Pre-Processing 1 April 30, 2015 16:33
[swak4Foam] Air Conditioned room groovyBC Sebaj OpenFOAM Community Contributions 7 October 31, 2012 14:16


All times are GMT -4. The time now is 08:31.