plot_thermaltransient_results

PURPOSE ^

PLOT_THERMALTRANSIENT_RESULTS - plot results of a thermal transient solution

SYNOPSIS ^

function plot_thermaltransient_results(md,options_structure,width,i)

DESCRIPTION ^

PLOT_THERMALTRANSIENT_RESULTS - plot  results of a thermal transient solution

   Usage:
      plot_thermaltransient_results(md,options_structure,width,i);

   See also: PLOTMODEL

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function plot_thermaltransient_results(md,options_structure,width,i)
0002 %PLOT_THERMALTRANSIENT_RESULTS - plot  results of a thermal transient solution
0003 %
0004 %   Usage:
0005 %      plot_thermaltransient_results(md,options_structure,width,i);
0006 %
0007 %   See also: PLOTMODEL
0008 
0009 string='plot(md';
0010 for i=1:length(md.thermaltransient_results),
0011     string=[string ',''data'',''thermaltransient_results(' num2str(i) ').temperature'',''view'',3,''title'',''Temperature at time ' num2str(md.thermaltransient_results(i).time) ' a'''];
0012 end
0013 string=[string ',''figure'',1,''colorbar#all'',''on'',''view'',3,''fontsize'',' num2str(options_structure.fontsize) ',''fontweight'',' options_structure.fontweight ');'];
0014 eval(string);
0015 clear string;
0016 
0017 string='plot(md';
0018 for i=2:length(md.thermaltransient_results),
0019     string=[string ',''data'',md.thermaltransient_results(' num2str(i) ').temperature-md.thermaltransient_results(' num2str(i-1) ').temperature,''view'',3,''title'',''Delta temperature at time ' num2str(md.thermaltransient_results(i).time) ' a'''];
0020 end
0021 string=[string ',''figure'',2,''colorbar#all'',''on'',''fontsize'',' num2str(options_structure.fontsize) ',''fontweight'',' options_structure.fontweight ');'];
0022 eval(string);
0023 clear string;
0024

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003