This file is indexed.

/usr/share/doc/libplplot11/examples/d/x09d.d is in libplplot-dev 5.9.9-2ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
// $Id: x09d.d 11684 2011-03-31 04:15:32Z airwin $
//
//      Contour plot demo.
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
//

import std.string;
import std.math;
import plplot;

const int XPTS = 35;              // Data points in x
const int YPTS = 46;              // Data points in y

// Transformation function
extern ( C ) {
PLFLT[] tr = [ 2. / ( XPTS - 1 ), 0.0, -1.0, 0.0, 2. / ( YPTS - 1 ), -1.0 ];

void mypltr( PLFLT x, PLFLT y, PLFLT* tx, PLFLT* ty, void* pltr_data )
{
    *tx = tr[0] * x + tr[1] * y + tr[2];
    *ty = tr[3] * x + tr[4] * y + tr[5];
}
}

//polar contour plot example.
void polar()
{
    const int PERIMETERPTS = 100;
    const int RPTS         = 40;
    const int THETAPTS     = 40;

    plenv( -1., 1., -1., 1., 0, -2 );
    plcol0( 1 );

    //Perimeter
    PLFLT[] px, py;
    px.length = PERIMETERPTS;
    py.length = PERIMETERPTS;
    PLFLT t;
    for ( int i = 0; i < PERIMETERPTS; i++ )
    {
        t     = 2. * PI / ( PERIMETERPTS - 1 ) * i;
        px[i] = cos( t );
        py[i] = sin( t );
    }
    plline( px, py );

    //create data to be contoured.
    PLcGrid2 cgrid2;
    cgrid2.xg = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        cgrid2.xg[i] = new PLFLT[THETAPTS];
    cgrid2.yg = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        cgrid2.yg[i] = new PLFLT[THETAPTS];

    PLFLT[][] z = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        z[i] = new PLFLT[THETAPTS];

    PLFLT r, theta;
    for ( int i = 0; i < RPTS; i++ )
    {
        r = i / cast(double) ( RPTS - 1 );
        for ( int j = 0; j < THETAPTS; j++ )
        {
            theta           = 2. * PI / ( THETAPTS - 1 ) * j;
            cgrid2.xg[i][j] = r * cos( theta );
            cgrid2.yg[i][j] = r * sin( theta );
            z[i][j]         = r;
        }
    }

    PLFLT[] lev;
    lev.length = 10;
    for ( int i = 0; i < 10; i++ )
        lev[i] = 0.05 + 0.10 * i;

    plcol0( 2 );
    plcont( z, 1, RPTS, 1, THETAPTS, lev, cgrid2 );
    plcol0( 1 );
    pllab( "", "", "Polar Contour Plot" );
}

//--------------------------------------------------------------------------
// f2mnmx
//
// Returns min & max of input 2d array.
//--------------------------------------------------------------------------
void f2mnmx( PLFLT[][] f, out PLFLT fmn, out PLFLT fmx )
{
    fmx = f[0][0];
    fmn = fmx;

    for ( int i = 0; i < f.length; i++ )
    {
        for ( int j = 0; j < f[i].length; j++ )
        {
            fmx = fmax( fmx, f[i][j] );
            fmn = fmin( fmn, f[i][j] );
        }
    }
}


//shielded potential contour plot example.
void potential()
{
    const int PERIMETERPTS = 100;
    const int RPTS         = 40;
    const int THETAPTS     = 64;
    const int NLEVEL       = 20;

    //create data to be contoured.
    PLcGrid2 cgrid2;
    cgrid2.xg = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        cgrid2.xg[i] = new PLFLT[THETAPTS];
    cgrid2.yg = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        cgrid2.yg[i] = new PLFLT[THETAPTS];

    PLFLT[][] z = new PLFLT[][RPTS];
    for ( int i = 0; i < RPTS; i++ )
        z[i] = new PLFLT[THETAPTS];

    PLFLT r, theta;
    for ( int i = 0; i < RPTS; i++ )
    {
        r = 0.5 + i;
        for ( int j = 0; j < THETAPTS; j++ )
        {
            theta           = 2. * PI / ( THETAPTS - 1 ) * ( 0.5 + j );
            cgrid2.xg[i][j] = r * cos( theta );
            cgrid2.yg[i][j] = r * sin( theta );
        }
    }
    PLFLT rmax = r;

    PLFLT xmin, xmax, ymin, ymax;
    f2mnmx( cgrid2.xg, xmin, xmax );
    f2mnmx( cgrid2.yg, ymin, ymax );
    PLFLT x0 = ( xmin + xmax ) / 2.;
    PLFLT y0 = ( ymin + ymax ) / 2.;

    // Expanded limits
    PLFLT peps  = 0.05;
    PLFLT xpmin = xmin - fabs( xmin ) * peps;
    PLFLT xpmax = xmax + fabs( xmax ) * peps;
    PLFLT ypmin = ymin - fabs( ymin ) * peps;
    PLFLT ypmax = ymax + fabs( ymax ) * peps;

    // Potential inside a conducting cylinder (or sphere) by method of images.
    // Charge 1 is placed at (d1, d1), with image charge at (d2, d2).
    // Charge 2 is placed at (d1, -d1), with image charge at (d2, -d2).
    // Also put in smoothing term at small distances.
    //
    PLFLT eps = 2.;

    PLFLT q1 = 1.;
    PLFLT d1 = rmax / 4.;

    PLFLT q1i = -q1 * rmax / d1;
    PLFLT d1i = pow( rmax, 2. ) / d1;

    PLFLT q2 = -1.;
    PLFLT d2 = rmax / 4.;

    PLFLT q2i = -q2 * rmax / d2;
    PLFLT d2i = pow( rmax, 2. ) / d2;

    PLFLT div1, div1i, div2, div2i;
    for ( int i = 0; i < RPTS; i++ )
    {
        for ( int j = 0; j < THETAPTS; j++ )
        {
            div1    = sqrt( pow( cgrid2.xg[i][j] - d1, 2. ) + pow( cgrid2.yg[i][j] - d1, 2. ) + pow( eps, 2. ) );
            div1i   = sqrt( pow( cgrid2.xg[i][j] - d1i, 2. ) + pow( cgrid2.yg[i][j] - d1i, 2. ) + pow( eps, 2. ) );
            div2    = sqrt( pow( cgrid2.xg[i][j] - d2, 2. ) + pow( cgrid2.yg[i][j] + d2, 2. ) + pow( eps, 2. ) );
            div2i   = sqrt( pow( cgrid2.xg[i][j] - d2i, 2. ) + pow( cgrid2.yg[i][j] + d2i, 2. ) + pow( eps, 2. ) );
            z[i][j] = q1 / div1 + q1i / div1i + q2 / div2 + q2i / div2i;
        }
    }
    PLFLT zmin, zmax;
    f2mnmx( z, zmin, zmax );

    // Positive and negative contour levels.
    PLFLT   dz = ( zmax - zmin ) / NLEVEL;
    PLFLT[] clevelneg, clevelpos;
    PLFLT   clevel;
    clevelneg.length = NLEVEL;
    clevelpos.length = NLEVEL;
    int nlevelneg = 0;
    int nlevelpos = 0;
    for ( int i = 0; i < NLEVEL; i++ )
    {
        clevel = zmin + ( i + 0.5 ) * dz;
        if ( clevel <= 0. )
            clevelneg[nlevelneg++] = clevel;
        else
            clevelpos[nlevelpos++] = clevel;
    }
    // Colours!
    PLINT ncollin = 11;
    PLINT ncolbox = 1;
    PLINT ncollab = 2;

    // Finally start plotting this page!
    pladv( 0 );
    plcol0( ncolbox );

    plvpas( 0.1, 0.9, 0.1, 0.9, 1.0 );
    plwind( xpmin, xpmax, ypmin, ypmax );
    plbox( "", 0., 0, "", 0., 0 );

    plcol0( ncollin );
    if ( nlevelneg > 0 )
    {
        // Negative contours
        pllsty( 2 );
        plcont( z, 1, RPTS, 1, THETAPTS, clevelneg, cgrid2 );
    }

    if ( nlevelpos > 0 )
    {
        // Positive contours
        pllsty( 1 );
        plcont( z, 1, RPTS, 1, THETAPTS, clevelpos, cgrid2 );
    }

    // Draw outer boundary
    PLFLT[] px, py;
    px.length = PERIMETERPTS;
    py.length = PERIMETERPTS;
    PLFLT t;
    for ( int i = 0; i < PERIMETERPTS; i++ )
    {
        t     = ( 2. * PI / ( PERIMETERPTS - 1 ) ) * i;
        px[i] = x0 + rmax*cos( t );
        py[i] = y0 + rmax*sin( t );
    }

    plcol0( ncolbox );
    plline( px, py );

    plcol0( ncollab );
    pllab( "", "", "Shielded potential of charges in a conducting sphere" );
}


//--------------------------------------------------------------------------
// main
//
// Does several contour plots using different coordinate mappings.
//--------------------------------------------------------------------------
int main( char[][] args )
{
    PLINT[] mark   = [ 1500 ], space = [ 1500 ];
    PLFLT[] clevel = [ -1., -.8, -.6, -.4, -.2, 0, .2, .4, .6, .8, 1. ];

    // Parse and process command line arguments
    plparseopts( args, PL_PARSE_FULL );

    // Initialize plplot
    plinit();

    // Set up function arrays
    PLFLT[][] z = new PLFLT[][XPTS];
    for ( int i = 0; i < XPTS; i++ )
        z[i] = new PLFLT[YPTS];

    PLFLT[][] w = new PLFLT[][XPTS];
    for ( int i = 0; i < XPTS; i++ )
        w[i] = new PLFLT[YPTS];

    PLFLT xx, yy;
    for ( int i = 0; i < XPTS; i++ )
    {
        xx = cast(double) ( i - ( XPTS / 2 ) ) / ( XPTS / 2 );
        for ( int j = 0; j < YPTS; j++ )
        {
            yy      = cast(double) ( j - ( YPTS / 2 ) ) / ( YPTS / 2 ) - 1.0;
            z[i][j] = xx * xx - yy * yy;
            w[i][j] = 2 * xx * yy;
        }
    }

    // Set up grids
    PLcGrid cgrid1;
    cgrid1.xg = new PLFLT[XPTS];
    cgrid1.yg = new PLFLT[YPTS];

    PLcGrid2 cgrid2;
    cgrid2.xg = new PLFLT[][XPTS];
    for ( int i = 0; i < XPTS; i++ )
        cgrid2.xg[i] = new PLFLT[YPTS];

    cgrid2.yg = new PLFLT[][XPTS];
    for ( int i = 0; i < XPTS; i++ )
        cgrid2.yg[i] = new PLFLT[YPTS];

    PLFLT argx, argy, distort;
    for ( int i = 0; i < XPTS; i++ )
    {
        for ( int j = 0; j < YPTS; j++ )
        {
            mypltr( cast(PLFLT) i, cast(PLFLT) j, &xx, &yy, null );

            argx    = xx * PI / 2;
            argy    = yy * PI / 2;
            distort = 0.4;

            cgrid1.xg[i] = xx + distort * cos( argx );
            cgrid1.yg[j] = yy - distort * cos( argy );

            cgrid2.xg[i][j] = xx + distort * cos( argx ) * cos( argy );
            cgrid2.yg[i][j] = yy - distort * cos( argx ) * cos( argy );
        }
    }

    // Plot using identity transform
    pl_setcontlabelformat( 4, 3 );
    pl_setcontlabelparam( 0.006, 0.3, 0.1, 1 );
    plenv( -1.0, 1.0, -1.0, 1.0, 0, 0 );
    plcol0( 2 );
    plcont( z, 1, XPTS, 1, YPTS, clevel, &mypltr );

    plstyl( mark, space );
    plcol0( 3 );
    plcont( w, 1, XPTS, 1, YPTS, clevel, &mypltr );
    plstyl( null, null );
    plcol0( 1 );
    pllab( "X Coordinate", "Y Coordinate", "Streamlines of flow" );
    pl_setcontlabelparam( 0.006, 0.3, 0.1, 0 );

    // Plot using 1d coordinate transform
    plenv( -1.0, 1.0, -1.0, 1.0, 0, 0 );
    plcol0( 2 );
    plcont( z, 1, XPTS, 1, YPTS, clevel, cgrid1 );

    plstyl( mark, space );
    plcol0( 3 );
    plcont( w, 1, XPTS, 1, YPTS, clevel, cgrid1 );
    plstyl( null, null );
    plcol0( 1 );
    pllab( "X Coordinate", "Y Coordinate", "Streamlines of flow" );

    // Plot using 2d coordinate transform
    plenv( -1.0, 1.0, -1.0, 1.0, 0, 0 );
    plcol0( 2 );
    plcont( z, 1, XPTS, 1, YPTS, clevel, cgrid2 );

    plstyl( mark, space );
    plcol0( 3 );
    plcont( w, 1, XPTS, 1, YPTS, clevel, cgrid2 );
    plstyl( null, null );
    plcol0( 1 );
    pllab( "X Coordinate", "Y Coordinate", "Streamlines of flow" );

    pl_setcontlabelparam( 0.006, 0.3, 0.1, 0 );
    polar();

    pl_setcontlabelparam( 0.006, 0.3, 0.1, 0 );
    potential();

    plend();

    return 0;
}