make_all

PURPOSE ^

LUKE - builds all the (*.mat) files for running the benchmarks

SYNOPSIS ^

function [] = make_all(build_mode)

DESCRIPTION ^

LUKE - builds all the (*.mat) files for running the benchmarks 

This script builds all the *.mat files for running the benchmarks what are published (see the folder ~/LUKE/Simulations/Benchmarks). Don't remove it.

 by  Yves Peysson <yves.peysson@cea.fr> (CEA/DSM/IRFM) and Joan Decker <joan.decker@cea.fr> (CEA/DSM/IRFM)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [] = make_all(build_mode)
0002 %LUKE - builds all the (*.mat) files for running the benchmarks
0003 %
0004 %This script builds all the *.mat files for running the benchmarks what are published (see the folder ~/LUKE/Simulations/Benchmarks). Don't remove it.
0005 %
0006 % by  Yves Peysson <yves.peysson@cea.fr> (CEA/DSM/IRFM) and Joan Decker <joan.decker@cea.fr> (CEA/DSM/IRFM)
0007 %
0008 if nargin == 0,
0009     info_dke_yp(2,'This script builds all the *.mat files for running the examples. WARNING: All existing *.mat files are overwritten.')
0010     build_mode = input_dke_yp('Build *.mat with mexfiles (1:yes,0:no)',0,[0,1]);
0011 end
0012 buildmat(build_mode,'DISPLAY_files')
0013 buildmat(build_mode,'DKEPARAM_files')
0014 buildmat(build_mode,'EQUIL_files')
0015 buildmat(build_mode,'HXR_files')
0016 buildmat(build_mode,'HXR_files','HXRPARAM')
0017 buildmat(build_mode,'OHM_files')
0018 buildmat(build_mode,'RIPPLE_files')
0019 buildmat(build_mode,'TRANSP_files')
0020 buildmat(build_mode,'WAVE_files')
0021

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.