-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrnfoundry_setup.m
688 lines (591 loc) · 29.2 KB
/
rnfoundry_setup.m
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
function rnfoundry_setup (varargin)
% setup function for the RenewNet Foundry. Sets paths and attempts to
% compile mexfunctions for best performance of the tools
%
% Syntax
%
% rnfoundry_setup ()
% rnfoundry_setup ('Parameter', value)
%
% Description
%
% rnfoundry_setup sets up the RenewNet Foundry matlab code on a new
% installation. At it's simplest, it will just add some directories to your
% Matlab/Octave path. At it's most complicated it will download missing
% packages required for optimum performance and feature sets, and compile
% from scratch any matlab mex files which need compiled. What it does, or
% attempts to do, will depend on what has already been done before, or what
% has been supplied, or what you tell it to do using various options.
%
% If using Matlab (rather than Octave), to do any of the compilation you
% must have set up a C++ compiler for your Matlab installation in order to
% use the high performance functions. See Matlab's documentation for
% further information on setting up C++ compiler. Good starting points for
% this are
%
% http://uk.mathworks.com/help/matlab/matlab_external/choose-c-or-c-compilers.html
%
% and the 'doc mex' command
%
% Input
%
% rnfoundry_setup can be called with no arguments, or for finer control,
% over the install process, it can be called with additional optional
% arguemtns supplied as Parameter-Value pairs. The avaialble options are:
%
% 'RunTests' - Flag determining whether tor runs some scripts to test the
% setup after installation is complete. Default is false.
%
% 'ForceMulticoreExistfileSetup' - Forces the recompilation of the
% existfile mex function in the multicore package. A non-mex version
% will be used if not present. Default is false.
%
% 'SkipMulticoreExistfileSetup' - Skips compilation of the existfile mex
% function in the multicore package, even if it is not on the path. A
% slower non-mex version will be used if not present. Default is false.
%
% 'ForceMMakeExistfileSetup' - Forces the recompilation of the
% existfile mex function in the mmake package. A non-mex version will be
% used if not present. Default is false.
%
% 'SkipMMakeExistfileSetup' - Skips compilation of the existfile mex
% function in the mmake package, even if it is not on the path. A slower
% non-mex version will be used if not present. Default is false.
%
% 'ForceMexLseiSetup' - Forces the recompilation of the mexlsei mex
% function even if it already on the path. mexlsei is not required if
% your system has the 'quadprog' function. Default is false.
%
% 'SkipMexLseiSetup' - Skips the compilation of the mexlsei mex function.
% Features requiring this will not be available. mexlsei is not required
% if your system has the 'quadprog' function.
%
% 'ForceMexLseiF2cLibRecompile' - Forces the recompilation of the f2c
% library which must be linked to by the mexlsei mex function. Default
% is false.
%
% 'ForceMexLseiCFileCreation' - Forces the creation of the C language file
% dlsei from the original fortran sources of dlsei using f2c. Default is
% false in which case a presupplied version is used.
%
% 'ForceMexSLMSetup' - Forces the recompilation of the mexslmeval mex
% function even if it already on the path. Compilation of this function
% requires the GNU scientific library (libgsl and libgslblas). Default
% is false.
%
% 'SkipMexSLMSetup' - Skips the recompilation of the mexslmeval mex
% function even if it is not on the path. A slower non-compiled version
% will be used if the compiled version is not present. Default is false.
%
% 'ForceMexPPValSetup' - Forces the recompilation of the mexppval mex
% function even if it already on the path. Default is false.
%
% 'SkipMexPPValSetup' - Skips compilation of the mexppval mex function
% even if it is not on the path. Default is false.
%
% 'ForceMexmPhaseWLSetup' - Forces the recompilation of the mexmPhaseWL
% mex function even if it already on the path. Default is false.
%
% 'SkipMexmPhaseWLSetup' - Skips the recompilation of the mexmPhaseWL
% mex function even if it is not on the path. There is no non-mex
% alternative so winding design funcitons will not work. Default is
% false.
%
% 'ForceMBDynSetup' - Forces the recompilation of the mbdyn related
% mex functions even if they are already on the path. Default is false.
%
% 'SkipMBDynSetup' - Skips the recompilation of the mbdyn related
% mex functions even if it they are not on the path. There is no non-mex
% alternative multibody dynamics modelling functions will not work.
% Default is false.
%
% 'PreventMBDynCheck' - Some functions in the renewnet foundry require
% the 'MBDyn' multibody dynamics package. This option determines whether
% rnfoundry_setup checks to see if MBDyn is already installed (by
% looking for MBDyn libraries and header files in standard or specified
% directories). Default is false, so rnfoundry_setup WILL check to see
% if MBDyn is installed and display a notice if it is not.
%
% 'ForceAllMex' - Equivalent to setting all the Force* options above to
% true. Default is false.
%
% 'ForceMexMBCNodalSharedMem' - Force building of the shared memory
% communication method version of the MBDyn interface. By default this
% is not built on Windows (but *is* built on other systems). Requires
% the BOOST C++ library to be available. Default is false.
%
% 'MBCNodalSharedMemExtraMexArgs' -
%
% 'PreventXFemmCheck' - Many functions in the renewnet foundry require
% the 'xfemm' finite element analysis package. This option determines
% whether rnfoundry_setup checks to see if xfemm is already installed
% (by looking for xfemm functions in the path). Default is false, so
% rnfoundry_setup WILL check to see if xfemm is installed and display a
% notice if it is not.
%
% the following options no longer apply as https breaks the sourceforge
% download process, might restore some day
%
% 'XFemmInstallPrefix' - Many functions in the renewnet foundry require
% the 'xfemm' finite element analysis package. rnfoundry_setup can
% download and install this package if desired. By defualt the package
% will be installed in the same directory as the one containing
% rnfoundry_setup.m, you can use this option to set this to a different
% directory.
%
% 'XFemmDownloadSource' - Many functions in the renewnet foundry require
% the 'xfemm' finite element analysis package. rnfoundry_setup can
% download and install this package if desired. To change the default
% download location (i.e. the remote url pointing to the package on the
% internet) you can set this option. The default is a location on
% Sourceforge.net, and depends on your machine architecture. It's fairly
% unlikely you'll ever want to change this option.
%
%
% set up the matlab path first to get access to a load of utility
% functions we can then use
thisfilepath = fileparts (which ('rnfoundry_setup'));
addpath(genpath (thisfilepath));
workdir = pwd ();
% restore working directory on error or exit
CC = onCleanup (@() cd (workdir));
options.RunTests = false;
options.Verbose = false;
options.ForceAllMex = false;
% mexlsei related
options.ForceMexLseiSetup = false;
options.SkipMexLseiSetup = false;
options.ForceMexLseiF2cLibRecompile = false;
options.ForceMexLseiCFileCreation = false;
% slm fitting tool related
options.ForceMexSLMSetup = false;
options.SkipMexSLMSetup = false;
% mbdyn
options.ForceMBDynSetup = false;
options.SkipMBDynSetup = false;
options.PreventMBDynCheck = false;
[options.MBCLibDir, options.MBCIncludeDir] = mbdyn.mint.find_libmbc ();
options.ForceMexMBCNodalSharedMem = false;
options.MBCNodalSharedMemExtraMexArgs = {};
if isunix
options.GSLLibDir = ''; % for mexslmeval
options.GSLIncludeDir = ''; % for mexslmeval
options.F2CLibPath = ''; % for mlse
else
options.GSLLibDir = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'lib'); % for mexslmeval
options.GSLIncludeDir = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'include'); % for mexslmeval
if isoctave
options.F2CLibPath = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'lib', 'libf2c.a'); % for mlse
else
options.F2CLibPath = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'lib', 'f2c.lib'); % for mlse
end
end
% mex ppval related
options.ForceMexPPValSetup = false;
options.SkipMexPPValSetup = false;
% force setting up mexmPhaseWL
options.ForceMexmPhaseWLSetup = false;
options.SkipMexmPhaseWLSetup = false;
% xfemm related
options.PreventXFemmCheck = false;
% if ispc
% Inputs.XFemmDownloadSource = 'https://downloads.sourceforge.net/project/xfemm/Release/Release%201.8/xfemm_v1_8_mingw_win64.zip?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fxfemm%2Ffiles%2FRelease%2FRelease%25201.8%2F&ts=1488547864&use_mirror=netix';
% elseif isunix
% Inputs.XFemmDownloadSource = 'https://downloads.sourceforge.net/project/xfemm/Release/Release%201.8/xfemm_v1_8_linux64.tar.gz?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fxfemm%2Ffiles%2FRelease%2FRelease%25201.8%2F&ts=1488547898&use_mirror=netcologne';
% else
% Inputs.XFemmDownloadSource = '';
% end
options.XFemmInstallPrefix = fullfile (thisfilepath, 'common');
options.ForceMulticoreExistfileSetup = false;
options.SkipMulticoreExistfileSetup = false;
options.ForceMMakeExistfileSetup = false;
options.SkipMMakeExistfileSetup = false;
options.W64CrossBuild = false;
options.W64CrossBuildMexLibsDir = '';
options.ThrowBuildErrors = false;
% now parse the pv pairs
options = parse_pv_pairs (options, varargin);
if options.ForceAllMex
options.ForceMexLseiSetup = true;
options.ForceMexSLMSetup = true;
options.ForceMBDynSetup = true;
options.ForceMexPPValSetup = true;
options.ForceMulticoreExistfileSetup = true;
options.ForceMMakeExistfileSetup = true;
options.ForceMexmPhaseWLSetup = true;
end
% input checking
check.isLogicalScalar (options.RunTests, true, 'RunTests');
check.isLogicalScalar (options.Verbose, true, 'Verbose');
check.isLogicalScalar (options.ForceAllMex, true, 'ForceAllMex');
check.isLogicalScalar (options.ForceMexLseiSetup, true, 'ForceMexLseiSetup');
check.isLogicalScalar (options.ForceMexSLMSetup, true, 'ForceMexSLMSetup');
check.isLogicalScalar (options.ForceMBDynSetup, true, 'ForceMBDynSetup');
check.isLogicalScalar (options.ForceMexPPValSetup, true, 'ForceMexPPValSetup');
check.isLogicalScalar (options.ForceMulticoreExistfileSetup, true, 'ForceMulticoreExistfileSetup');
check.isLogicalScalar (options.ForceMMakeExistfileSetup, true, 'ForceMMakeExistfileSetup');
check.isLogicalScalar (options.ForceMexmPhaseWLSetup, true, 'ForceMexmPhaseWLSetup');
check.isLogicalScalar (options.SkipMexLseiSetup, true, 'SkipMexLseiSetup');
check.isLogicalScalar (options.SkipMexSLMSetup, true, 'SkipMexSLMSetup');
check.isLogicalScalar (options.SkipMBDynSetup, true, 'SkipMBDynSetup');
check.isLogicalScalar (options.SkipMexPPValSetup, true, 'SkipMexPPValSetup');
check.isLogicalScalar (options.SkipMulticoreExistfileSetup, true, 'SkipMulticoreExistfileSetup');
check.isLogicalScalar (options.SkipMMakeExistfileSetup, true, 'SkipMMakeExistfileSetup');
check.isLogicalScalar (options.SkipMexmPhaseWLSetup, true, 'SkipMexmPhaseWLSetup');
check.isLogicalScalar (options.PreventXFemmCheck, true, 'PreventXFemmCheck');
check.isLogicalScalar (options.ForceMexLseiF2cLibRecompile, true, 'ForceMexLseiF2cLibRecompile');
check.isLogicalScalar (options.ForceMexLseiCFileCreation, true, 'ForceMexLseiCFileCreation');
check.isLogicalScalar (options.W64CrossBuild, true, 'W64CrossBuild');
check.isLogicalScalar (options.ThrowBuildErrors, true, 'ThrowBuildErrors');
didcompwarn = false;
mex_ext = mexext ();
if options.W64CrossBuild
if ispc
error ('W64CrossBuild is true, but we are on a windows system.');
end
assert ( ~isempty (options.W64CrossBuildMexLibsDir), ...
TextWrapper.wraplines ( ['W64CrossBuild is true, but W64CrossBuildMexLibsDir is empty. ', ...
'You must supply the location of the windows mingw64 windows libraries'] ) ...
);
assert ( all ( [ exist(fullfile (options.W64CrossBuildMexLibsDir, 'libmex.a'), 'file'), ...
exist(fullfile (options.W64CrossBuildMexLibsDir, 'libmx.a'), 'file'), ...
exist(fullfile (options.W64CrossBuildMexLibsDir, 'libmat.a'), 'file') ] ), ...
'One of libmex.a, libmx.a or libmat.a was not found in %s', ...
options.W64CrossBuildMexLibsDir );
common_extra_mex_args = { mmake.cross.w64.gccmexarg(), ...Wra
['-L"', options.W64CrossBuildMexLibsDir, '"'] };
mex_ext = 'mexw64';
options.GSLLibDir = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'lib'); % for mexslmeval
options.GSLIncludeDir = fullfile (thisfilepath, 'x86_64-w64-mingw32', 'include'); % for mexslmeval
end
%% mcore.existfile
if options.ForceMulticoreExistfileSetup && options.SkipMulticoreExistfileSetup
error ('The options ForceMulticoreExistfileSetup and SkipMulticoreExistfileSetup are both set to true');
end
if ~options.SkipMulticoreExistfileSetup
mcore_pkg_dir = fullfile (rnfoundry_common_rootdir (), 'multicore', '+mcore');
if options.ForceMulticoreExistfileSetup || (exist (fullfile(mcore_pkg_dir, ['existfile.', mex_ext]), 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
% set up existfile mex function
mcore.mexcompile_existfile ( 'Verbose', options.Verbose, ...
'ExtraMexArgs', extra_mex_args, ...
'MexExt', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'existfile')
end
end
end
%% mmake.existfile
if options.ForceMMakeExistfileSetup && options.SkipMMakeExistfileSetup
error ('The options ForceMMakeExistfileSetup and SkipMMakeExistfileSetup are both set to true');
end
if ~options.SkipMMakeExistfileSetup
mmake_pkg_dir = fullfile (rnfoundry_common_rootdir (), '+mmake');
if options.ForceMMakeExistfileSetup || (exist (fullfile(mmake_pkg_dir, ['existfile.', mex_ext]), 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
% set up existfile mex function
mmake.mexcompile_existfile ( 'Verbose', options.Verbose, ...
'ExtraMexArgs', extra_mex_args, ...
'MexExt', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'existfile')
end
end
end
%% mexlsei
if options.ForceMexLseiSetup && options.SkipMexLseiSetup
error ('The options ForceMexLseiSetup and SkipMexLseiSetup are both set to true');
end
if ~options.SkipMexLseiSetup
if options.ForceMexLseiSetup || (exist (['mexlsei.', mex_ext], 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
mexlsei_setup ( 'ForceF2CLibRecompile', options.ForceMexLseiF2cLibRecompile, ...
'ForceLSEIWrite', options.ForceMexLseiCFileCreation, ...
'F2CLibFilePath', options.F2CLibPath, ...
'Verbose', options.Verbose, ...
'W64CrossBuild', options.W64CrossBuild, ...
'ExtraMexArgs', extra_mex_args, ...
'MexExt', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'lsei')
end
end
end
%% mexslmeval
if options.ForceMexSLMSetup && options.SkipMexSLMSetup
error ('The options ForceMexSLMSetup and SkipMexSLMSetup are both set to true');
end
if ~options.SkipMexSLMSetup
if options.ForceMexSLMSetup || (exist (['mexslmeval.', mex_ext], 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
mexslmeval_setup ( 'Verbose', options.Verbose, ...
'GSLLibDir', options.GSLLibDir, ...
'GSLIncludeDir', options.GSLIncludeDir, ...
'ExtraMexArgs', extra_mex_args, ...
'MexExt', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'slmeval')
end
end
end
%% mbdyn
if options.ForceMBDynSetup && options.SkipMBDynSetup
error ('The options ForceMBDynSetup and SkipMBDynSetup are both set to true');
end
% octave's which function doesn't currently work for functions in
% package directories, so wrap the call to getmfilepath in a try catch
% with a fallback. If Octave is fixed this will then start working
% again
try
mexMBCNodalexists = exist (fullfile (getmfilepath ('mbdyn.mint.MBCNodal'), ['mexMBCNodal.', mex_ext]), 'file') == 3;
catch
% this version is more fragile to files/directories being moved
% around
mbdynmexdir = fullfile (mbdyn_rootdir (), '+mbdyn', '+mint');
% check this code directory actually exists
assert ( exist (mbdynmexdir, 'dir') == 7, ...
'The MBDyn code directory:\n\n\t%s\n\ndoes not appear to exist.', ...
mbdynmexdir );
% now check if the mex file already exists
mexMBCNodalexists = exist ( fullfile ( mbdynmexdir, ['mexMBCNodal.', mex_ext]), ...
'file' ) == 3;
end
if ~options.SkipMBDynSetup
if options.ForceMBDynSetup || ~mexMBCNodalexists
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
mexmbdyn_setup ( 'Verbose', options.Verbose, ...
'MBCLibDir', options.MBCLibDir, ...
'MBCIncludeDir', options.MBCIncludeDir, ...
'PreventMBDynCheck', options.PreventMBDynCheck, ...
'ForceMexMBCNodalSharedMem', options.ForceMexMBCNodalSharedMem, ...
'MBCNodalExtraMexArgs', extra_mex_args, ...
'MBCNodalSharedMemExtraMexArgs', [options.MBCNodalSharedMemExtraMexArgs, extra_mex_args], ...
'MexExtension', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors, ...
'W64CrossBuild', options.W64CrossBuild );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'mbdyn')
end
end
end
%% ppmval ppuval
if options.ForceMexPPValSetup && options.SkipMexPPValSetup
error ('The options ForceMexPPValSetup and SkipMexPPValSetup are both set to true');
end
if ~options.SkipMexPPValSetup
if options.ForceMexPPValSetup ...
|| (exist (['ppmval.', mex_ext], 'file') ~= 3)...
|| (exist (['ppuval.', mex_ext], 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
if options.W64CrossBuild
extra_mex_args = common_extra_mex_args;
else
extra_mex_args = {};
end
mexppval_setup ( 'Verbose', options.Verbose, ...
'ExtraMexArgs', extra_mex_args, ...
'MexExt', mex_ext, ...
'ThrowBuildErrors', options.ThrowBuildErrors );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as they already exists\n', 'ppmval and ppuval')
end
end
end
%% mexmPhaseWL
if options.ForceMexmPhaseWLSetup && options.SkipMexmPhaseWLSetup
error ('The options ForceMexmPhaseWLSetup and SkipMexmPhaseWLSetup are both set to true');
end
if ~options.SkipMexmPhaseWLSetup
if options.ForceMexmPhaseWLSetup || (exist (['mexmPhaseWL.', mex_ext], 'file') ~= 3)
didcompwarn = compilerwarning (didcompwarn);
mmake.make ( '', fullfile (pm_machines_tools_rootdir (), 'common', 'winding-layout', 'MMakefile.m'), ...
'FcnMakeFileArgs', { 'DoCrossBuildWin64', options.W64CrossBuild, ...
'W64CrossBuildMexLibsDir', options.W64CrossBuildMexLibsDir, ...
'Verbose', options.Verbose }, ...
'DoCrossBuildWin64', options.W64CrossBuild );
mmake.make ( 'tidy', fullfile (pm_machines_tools_rootdir (), 'common', 'winding-layout', 'MMakefile.m'), ...
'FcnMakeFileArgs', { 'DoCrossBuildWin64', options.W64CrossBuild, ...
'W64CrossBuildMexLibsDir', options.W64CrossBuildMexLibsDir, ...
'Verbose', options.Verbose }, ...
'DoCrossBuildWin64', options.W64CrossBuild );
else
if options.Verbose
fprintf (1, 'Not compiling %s mex as it already exists\n', 'mPhaseWL')
end
end
end
xfemm_main_page_url = 'https://sourceforge.net/projects/xfemm/';
% check for the existence of xfemm package
if ~options.PreventXFemmCheck
if exist ('mexfmesher', 'file') ~= 3
fprintf (1, [ ...
'\n\n', ...
'************************** XFEMM NOTICE **************************\n\n', ...
TextWrapper.wraptext( [ ...
'You do not appear to have the xfemm package for performing electromagnetic ', ...
'simulations which is required for some functions in the foundry to work ', ...
'(particularly the electrical machine simulations. You can obtain ', ...
'this package from Sourceforce here:' ] ), ...
'\n\n', ...
xfemm_main_page_url, ...
'\n\n', ...
'************************** XFEMM NOTICE **************************\n\n' ]);
% response = '';
% while ~(strcmpi (response, 'Y') || strcmpi (response, 'N') )
% response = input( sprintf ([ ...
% '\n\n', ...
% '************************** NOTICE **************************\n', ...
% 'You do not appear to have the xfemm package for performing electromagnetic\n', ...
% 'simulations which is required for many functions in the foundry\n', ...
% 'to work. Do you want to try to download and install it? (y/n): ']), 's');
% end
%
% if upper(response) == 'Y'
%
% doxfemm = true;
% if ispc
% xfemm_prefix = 'xfemm_mingw_win64';
% xfemmfile = fullfile (tempdir, [xfemm_prefix, '.zip']);
% urlwrite ( Inputs.XFemmDownloadSource, xfemmfile );
% unpackfcn = @unzip;
% elseif isunix
% xfemm_prefix = 'xfemm_linux64';
% xfemmfile = fullfile (tempdir, [xfemm_prefix, '.tar.gz']);
% urlwrite ( Inputs.XFemmDownloadSource, xfemmfile );
% unpackfcn = @untar;
% else
% fprintf ('No xfemm compiled package is currently available for mac, skipping.\n');
% doxfemm = false;
% end
%
% if doxfemm
%
% fprintf (1, 'Downloading xfemm package from:\n%s\n', Inputs.XFemmDownloadSource);
%
% % unpack the download to the appropriate location
% unpackfcn (xfemmfile, Inputs.XFemmInstallPrefix);
%
% % remove the downloaded package
% delete (xfemmfile);
%
% % add mfemm setup function location to path and run it
% addpath (fullfile (Inputs.XFemmInstallPrefix, xfemm_prefix, 'mfemm'));
% mfemm_setup ();
%
% fprintf (1, 'xfemm package installation complete\n');
%
% end
% else
% fprintf ('Skipping xfemm install. You can obtain this package from Sourceforge later if you wish.\n');
% end
end
end
cd (workdir);
if ~isoctave
% print message about adding files to the path (octave currently
% doesn't support displaying help in subfunctions)
fprintf(1, '\n\n');
help rnfoundry_setup>addedtopathmsg
fprintf (1, '\n');
end
if options.RunTests
runtests ();
end
end
function runtests ()
% run some examples to test the installation
run_one_test ('example_basic_heaving_buoy_simulation');
close all;
run_one_test ('example_buoy_sim_with_ACTM');
close all;
run_one_test ('example_radial_flux_permanent_magnet_machine_sim');
close all;
run_one_test ('example_radial_flux_pm_with_ratio_specification');
close all;
if isoctave
run_one_test ('example_rm3.run_wecsim_in_octave');
else
run_one_test ('example_rm3.run_wecsim');
end
close all;
end
function run_one_test (script_name)
fprintf (1, 'Running test script: "%s"\n', script_name);
try
eval (script_name);
catch err
if isempty (err.message)
msg = 'error message was empty';
else
msg = err.message;
end
fprintf (1, 'The following test script: \n"%s"\nresulted in the following error:\n%s\n\n', msg);
end
end
function addedtopathmsg ()
% rnfoundry_setup has added the directories containing mfiles to the search
% path. This change will not be saved when you close Matlab/Octave. You
% will need to have these directories on the path in future for the
% RenewNet Foundry code to work when you restart Matlab/Octave. You can add
% them again by using the 'Set path' dialog in Matlab, or using the
% 'addpath' command, or by rerunning rnfoundry_setup again, which calls
% addpath internally to do this. rnfoundry_setup will not recompile the mex
% functions if they already exist and will just modify your path.
%
% If you open the 'Set path' dialog now, you could also save the changes
% that have just been made.
%
% Run the command 'help path' for more information on the path. In general
% you can save changes to the Matlab path that persist across sessions
% using the 'Set path' dialog, or you can make a startup.m file which runs
% every time Matlab starts (.octaverc in Octave) containing the addpath
% commands.
%
end
function didcompwarn = compilerwarning (didcompwarn)
if (didcompwarn == false) && (isoctave == false)
cc = mex.getCompilerConfigurations('C++');
if numel (cc) == 0
warning ( ['The renewnet foundry code will have best performance if ' ...
'you have set up a C++ compiler for matlab using "mex -setup". ' ...
'No C++ compiler seems to have been set up on your system yet. ' ...
'You may wish to set this up and re-run rnfoundry_setup.'])
end
end
didcompwarn = true;
end