-
Notifications
You must be signed in to change notification settings - Fork 3
/
runme.m
28 lines (25 loc) · 1.09 KB
/
runme.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
% this script calls the different test cases to reproduce all numerical
% results from the following paper:
%
% T. Casper, U. Roemer, H. De Gersem, S. Schoeps. Coupled Simulation of
% Transient Heat Flow and Electric Currents in Thin Wires: Application to
% Bond Wires in Microelectronic Chip Packaging. Computers and Mathematics
% with Applications, submitted. arXiv:1809.09034.
%
% authors:
% Thorben Casper, Ulrich Roemer, Herbert De Gersem, Sebastian Schoeps
% Institut fuer Theorie Elektromagnetischer Felder
% Graduate School of Computational Engineering
% Technische Universitaet Darmstadt
clear;
close all;
addpath(genpath('src'));
verbose = [0 0]; % triggers console outputs and plots
refinement = 'Fine'; % {'Coarse','Fine'}
% if Octave is used, add compatOctave to path for compatibility
if isOctave, addpath('compatOctave'); end
% run individual test cases
resistor2D(refinement,verbose);
resistor3Dstraight(refinement,verbose);
resistor3Dbent(refinement,verbose);
chip(refinement,verbose);