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

How to remove "invalid type conversion: double -> pointer to char" Error??

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 17, 2024, 08:36
Default How to remove "invalid type conversion: double -> pointer to char" Error??
  #1
New Member
 
Central Java
Join Date: Dec 2023
Posts: 1
Rep Power: 0
agusprihatno is on a distinguished road
I have written a UDF to define the Mass Source by the following equation

DEFINE_SOURCE(mass_source,c,t,dS,eqn)
{
real msource, b, bP, ba, kc ;
b = k0 * exp(AdsH/(R*C_T(c,t)))*op_pres;
bP = pow((k0/qm*exp(AdsH/(R*C_T(c,t)))*op_pres),tq);
ba = pow(bP,1/tq);
C_UDSI(c,t,0) = b / ba; /* C_eq ]g/g] equilibrium uptake*/

kc = 126.9889 * exp (-2757.8/C_T(c,t)); /*[s-1] corrected mass diffusion coeff by CFD simu*/

/* Computing instant uptake */
C_UDSI(c,t,1) = C_UDSI_M1(c,t,1) + kc * CURRENT_TIMESTEP * (C_UDSI(c,t,0) -C_UDSI_M1(c,t,1));

/* calculation dw/dt = ksav(Ceq - c_in);*/
C_UDSI(c,t,3) = (C_UDSI(c,t,1) - C_UDSI_M1(c,t,1)) / CURRENT_TIMESTEP ;/*dwbydt*/
/*C_UDSI(c,t,3) = ksav * (C_UDSI(c,t,0) - C_UDSI_M1(c,t,1));
/*mass source calculation*/
msource = -(1-bed_p) * dens_AC * C_UDSI(c,t,3); /*[kg/m3.s]*/

C_UDSI(c,t,4) = msource ;
/*dS[eqn] = - F0 * DbyRp2 * msource ;*/
/*C_UDSI(c,t,5) = - F0 * DbyRp2 * msource;*/
return msource;
}

When i interpret it, It shows the following Error in Line - 5.
"invalid type conversion: double -> pointer to char"

Please Suggest me something how to remove this Error????

Thanks.
agusprihatno 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
[OpenFOAM.org] compile error in dynamicMesh and thermophysicalModels libraries NickG OpenFOAM Installation 3 December 30, 2019 00:21
How to remove "invalid type conversion: double -> pointer to char" Error? Azim07 FLUENT 2 August 28, 2019 01:37
Undeclared Identifier Errof UDF SteveGoat Fluent UDF and Scheme Programming 7 October 15, 2014 07:11
Ansys Fluent 13.0 UDF compilation problem in Window XP (32 bit) Yogini Fluent UDF and Scheme Programming 7 October 3, 2012 07:24
Missing math.h header Travis FLUENT 4 January 15, 2009 11:48


All times are GMT -4. The time now is 16:44.