CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums

Search Results

Register Blogs Members List Search Today's Posts Mark Forums Read

Showing results 1 to 10 of 10
Search took 0.00 seconds.
Search: Posts Made By: blackmask
Forum: FLUENT July 24, 2013, 23:13
Replies: 26
Views: 2,832
Posted By blackmask
You can not count everything on me. It is your...

You can not count everything on me. It is your job after all. The data file in the source code is "voutu.txt", as you mentioned in several posts before. The file name in the zip file is...
Forum: FLUENT July 24, 2013, 21:08
Replies: 26
Views: 2,832
Posted By blackmask
No, it is not a platform problem. The reason is...

No, it is not a platform problem. The reason is that

lround

is not implemented in MSVC's math.h file.

Add the line

#define lround(x) (int)((x)+0.5)
Forum: FLUENT July 24, 2013, 05:26
Replies: 26
Views: 2,832
Posted By blackmask
Add #include <math.h> after ...

Add

#include <math.h>

after

#include <stdio.h>
Forum: FLUENT July 18, 2013, 21:21
Replies: 26
Views: 2,832
Posted By blackmask
This is not the code I wrote for you, it it?

This is not the code I wrote for you, it it?
Forum: FLUENT July 16, 2013, 22:55
Replies: 26
Views: 2,832
Posted By blackmask
I saw a lot of warnings but not an error. Would...

I saw a lot of warnings but not an error. Would you please help me highlight the error line?
Forum: FLUENT July 9, 2013, 06:00
Replies: 26
Views: 2,832
Posted By blackmask
My code above is sketchy because I do not know...

My code above is sketchy because I do not know much details of your grid distribution and/or your input data format. I am a bit frustrated that the description of your input data format changes all...
Forum: FLUENT July 8, 2013, 22:43
Replies: 26
Views: 2,832
Posted By blackmask
#include<stdio.h> #include "udf.h" #define...

#include<stdio.h>
#include "udf.h"

#define NX 5
#define NY 5
#define NT 2000


float data[NX][NY];
Forum: FLUENT July 8, 2013, 21:46
Replies: 26
Views: 2,832
Posted By blackmask
Something looks like #include<stdio.h> ...

Something looks like

#include<stdio.h>
#include "udf.h"

#define NX 5
#define NY 5
#define NT 2000
Forum: FLUENT July 8, 2013, 06:11
Replies: 26
Views: 2,832
Posted By blackmask
If you have data for each node then you sure...

If you have data for each node then you sure could use

DEFINE_PROFILE


You need to find the mapping between the random data and the area those data would apply. I assume you could find it some...
Forum: FLUENT July 8, 2013, 05:42
Replies: 26
Views: 2,832
Posted By blackmask
Use profile if you have the time series of the...

Use profile if you have the time series of the random data. Otherwise use

DEFINE_PROFILE

UDF macro.
Showing results 1 to 10 of 10

 
Forum Jump

All times are GMT -4. The time now is 09:37.