/** # An improved version of the profiling function under `profile5b.h` This profiling function uses the same profiling strategy as the `void profile()` function presented [here](profil5.h). However, this version of the same function is subjectively more user friendly. Especially since it mimics the user interface of other output functions in Basilisk. Also its behaviour when using MPI and/or 2D grids, is as one may naively expect. An extra function is deterministic profiles with at a fixed number of levels (`n`). Furthermore, it addresses the bug with "`too many open files`", that was found by V. Heusinkveld. Main features: - Consistent vertical profiles on tree grids, without upsampling. - The required computational effort scales approximately with the number of (leaf) grid cells. - Parrallel MPI compatible and scaleable. - Also openMP compatible but is not parallelized. ## input The function takes a structure as argument, this faciliates optional arguments. You may run *full default* by calling `profile(NULL)` to obtain a profile of all scalar fields in the standard output (e.g. your terminal). At the cost/price of vertical resolution, the *rf* argument can be used to (linearly) reduce/increase the computional effort this function requires. */ struct prof { scalar * list; // list of scalar field. The default is `all` char * fname; // Optional file name double ym; // lower y coordinate default is Y0" double h; // upper y coordinate. Default is Y0+L0 double rf; // reduction factor of query heights. Default is 1 FILE * fp; // File pointer, if `fname` is not provided. The default is `stdout` int n; // Number of levels for equidistant profiles }; double average_over_yp(scalar * list, double * v, double yp){ int len = list_len (list), m = 0; NOT_UNUSED(len); double a = 0; foreach(reduction(+:a) reduction(+:m) reduction(+:v[:len])) { if ((fabs(y-yp) <= (Delta/2))){ m++; double b = 1./Delta; foreach_dimension() b *= Delta; a += b; int k = 0; for (scalar s in list) { v[k++] += interpolate_linear (point, (struct _interpolate){s, x, yp, z})*b; s[]; } } } int g = 0; for (scalar s in list) v[g++] /= a; #if (dimension == 2) return a/(double)m; #else return sqrt(a/(double)m); #endif } void profile(struct prof p){ /** Default values are set in case they are not provided by the user. */ if(!p.list) p.list = all; if (!p.ym) p.ym = Y0 + (L0 / (double)(1 << (grid->maxdepth + 1))); if (!p.h) p.h = Y0 + L0 - (L0 / (double)(1 << (grid->maxdepth + 1))); if (!p.rf) p.rf = 1; if (!p.fname && !p.fp) p.fp = stdout; double dzn; if (p.n) dzn = (p.h - p.ym) / ((double)p.n - 0.99999999); int len = list_len(p.list); boundary(p.list); FILE * fp = p.fp; char * file = p.fname; /** The favorite worker is tasked with the file writing. */ if (pid()==0){ if (file && (fp = fopen (file, "w")) == NULL) { perror (file); exit (1); } assert (fp); /** For reference, a header is printed. */ fprintf(fp,"#y\t"); for(scalar s in p.list) fprintf(fp,"%s\t",s.name); fprintf(fp,"\n"); } double yp = p.ym; /** Here a loop starts that iteratively cycles over different y-coordinates. The vertical-step size is governed by the average grid spacing (at that height) and the reduction factor *rf*. */ while (yp <= p.h){ double aver[len]; memset(&aver, 0, sizeof(aver)); double dz = average_over_yp(p.list, aver, yp); if (pid() == 0){ int k = 0; for (scalar s in p.list){ if (k == 0) fprintf(fp,"%g\t%g",yp,aver[k]); if (k > 0) fprintf(fp,"\t%g",aver[k]); k++; if (k == len) fprintf(fp,"\n"); } } if (p.n) dz = dzn/p.rf; yp += p.rf*dz; } if (pid()==0){ fflush(fp); if (fp != stdout) fclose(fp); } } /** ##test *[A simple test / example](profile5cusage.c) */