0% found this document useful (0 votes)
42 views

2D Beam: Chair For Computational Engineering at

The document is a computational engineering assignment analyzing a 2D beam problem. It includes sections on problem formulation, equations, tables of data, sample code listings, figures comparing different cases, acknowledgments, and references. The assignment was authored by Adam Mickiewicz for a class on computational methods on April 26, 2021.

Uploaded by

putanowr
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views

2D Beam: Chair For Computational Engineering at

The document is a computational engineering assignment analyzing a 2D beam problem. It includes sections on problem formulation, equations, tables of data, sample code listings, figures comparing different cases, acknowledgments, and references. The assignment was authored by Adam Mickiewicz for a class on computational methods on April 26, 2021.

Uploaded by

putanowr
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Chair for Computational Engineering

at

CUT

Computational Methods
Assignment 1

2D beam

Author:
Adam Mickiewicz

April 26, 2021


1 Problem formulation
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui ex, euis-
mod euismod quam a, consectetur maximus mauris. Morbi rhoncus feugiat
ligula, mollis fringilla sem consequat sed. Duis rutrum pharetra augue, eu
sodales urna tempus vitae. Donec non libero ex. Sed bibendum tempor
libero, in dapibus ligula sollicitudin ut. Aenean id mauris sapien. Mauris ut
porttitor nibh. Praesent viverra eros at blandit auctor. Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Morbi dui ex, euismod euismod quam
a, consectetur maximus mauris. Morbi rhoncus feugiat ligula, mollis fringilla
sem consequat sed. Duis rutrum pharetra augue, eu sodales urna tempus
vitae.

2 Equations
Z ∞
1 1 x 2
P (x > 1) = √ xe− 2 ( 3 ) dx
1 3 Z2π

1 1 − 1 x2 2 . 1
= √ e 18 dx (y = x2 )
3 2πZ 1 2 18

3
=√ −e−y dy
2π 181
3 1
= √ e− 18


1, x = 1
a) p(x) =
0, otherwise
1

2
,0≤x≤2
b) p(x) =
0, otherwise

3 Tables
The table 1 is an example of referenced LATEXelements.

1
Col1 Col2 Col2 Col3
1 6 87837 787
2 7 78 5415
3 545 778 7507
4 545 18744 7560
5 88 788 6344

Table 1: Table to test captions and labels

4 Scripts
Listing 1: Sample code listing
% Sample scritp to create plot from embeded data

% data points
x = [0 , 1 , 3 , 5 12 , 17];
5 yA = [ -1 , 2 , 4 , 1 , -2 , 12];
yB = [ -3 , 2 , 1 , -2 , 8 , 11];

clf
figure (1 , ’ position ’ ,[100 , 100 , 700 , 700]);
10 hold on
set ( gca , ’ fontsize ’ , 26)
plot (x , yA , ’* - r ; Case A ; ’ , ’ markersize ’ , 15)
plot (x , yB , ’d - b ; Case B ; ’ , ’ markersize ’ , 15)
title ( ’ Comparison of cases ’)
15 xlabel ( ’ Distance [ m ] ’)
ylabel ( ’ Temperature [ deg C ] ’)
legend ( ’ location ’ , ’ southeast ’ , ’ fontsize ’ ,6)
grid ( ’ on ’)
print ( ’ cases_A_B . png ’ , ’ - dpng ’ , ’ - r600 ’ , ’ - S600 ,600 ’)
20 print ( ’ cases_A_B . pdf ’ , ’ - r600 ’ , ’ - S600 ,600 ’)

5 Figures
Figure 1 is produced from PDF file.
Figure 2 is produced from PNG file.

2
Comparison of cases
15

10
Temperature [deg C]

Case A
Case B

-5
0 5 10 15 20
Distance [m]

Figure 1: Caption

6 Acknowledgments
I have received substantial help from Juliusz Slowacki.

3
Figure 2: Caption

4
References
Kwon, Young W., and Hyochoong Bang. The Finite Element Method Using
MATLAB. 2nd. USA: CRC Press, Inc., 2000. isbn: 0849309182.
Schneider, Teseo, Jérémie Dumas, Xifeng Gao, Mario Botsch, Daniele Panozzo,
and Denis Zorin. “Poly-Spline Finite-Element Method.” ACM Trans.
Graph. (New York, NY, USA) 38, no. 3 (March 2019). issn: 0730-0301.
https://doi.org/10.1145/3313797. https://doi.org/10.1145/3313797.
Taylor, Valerie E., Abhiram Ranade, and David G. Messerschmitt. “Three-
Dimensional Finite-Element Analyses: Implications for Computer Archi-
tectures.” In Proceedings of the 1991 ACM/IEEE Conference on Super-
computing, 786–795. Supercomputing ’91. Albuquerque, New Mexico,
USA: Association for Computing Machinery, 1991. isbn: 0897914597.
https://doi.org /10.1145/125826.126188. https://doi.org /10.1145/
125826.126188.
Wachspress, Eugene L. “Finite Element Method.” In Encyclopedia of Com-
puter Science, 711–713. GBR: John Wiley / Sons Ltd., 2003. isbn:
0470864125.

You might also like