Using multiple softwares for performing a simulation

Discussion about building and installing Elmer
Post Reply
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Last edited by annier on 24 Feb 2016, 15:03, edited 27 times in total.
Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Navier-stokes equation for incompressible flow
incompressible N-S equations FEM
Scilab - solution of N-S equation
Different solution methods for incompressible Navier-Stokes Equations
Unsteady compressible Navier-Stokes Equation
FEM for incompressible N-S equations
Finite element methods for Incompressible Navier-Stokes Equations
N-s implementation in MOOSE framework
BCs for incompressible N-S equations
Mathematical formulation for N-S equation
flow between two vertical flat plates
Unsteady MHD flow between vertical plat plates
flow between two vertical plates
viscoelastic fluid flow between two vertical parallel plates
Numerical example on flow between vertical plates
Viscosity of liquid tin during heating and during cooling
Temperature dependent density of molten tin
Cu-Sn reactions
Viscosity of liquid indium and liquid tin
Flow of Newtonian Fluid between two Parallel Plates
Flow down an inclined plate
MHD natural convection flow in vertical plates
francis-99
Finite element method for the (Navier) Stokes Equations
Flow between the parallel plates with definitions of the boundary conditions
Navier stokes equations with traction boundary conditions
MIT lectures on potential flow
MIT surface tension module in fluid flow equation
Phase field method and fluid flow
COMSOL -phase field and Navier stokes
Phase field method for N-S with surface tension
phase field method for electrowetting
Multiphase systems with phase field models
C-H and level_set methods
Two phase flow in complex geometries
Last edited by annier on 15 Jan 2016, 00:21, edited 9 times in total.
Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Last edited by annier on 05 Sep 2019, 00:00, edited 1 time in total.
Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

Property Modeling through thermodynamic software
Interfacial energy of solid Sn solution in the In-Bi-Sn ternary alloy
Phase coarsening in solders
Coarsening mode and microstructure evolution in Al-In alloys for rapid cooling process
Influence of coarsening on microsegregation
Undercooling, microstructures and hardness of sn rich solders on Cu-xZn alloys under bump metallurgy
Experiments on sn rich phase coarsening Bangi
relation between cooling rates and the degree of undercooling
thesis on modeling of phase change kinetics of cocoa butter 2009
Thermal properties of Sn based solder alloys
Effect of composition and cooling rate on microstructure of SnAgCu solder alloys
Effect of cooling rate of solder on IMC



Scheil Model for Solidification of Alloys
Modelling of thermodynamic, thermophysical and physical properties of lead-free solder alloys
cost 531 database for leadfree solders
Dendritic solidification
lecture notes on solidification
macrosegreggation
visualization of dendrites growth

MatCalc Software and Literature Study
1. Homepage
2. MatCalc Engineering
3. Scheil-Gulliver Simulation Literature via MatCalc
4. Continuous casting of microalloyed steel
5. Tutorial on solidification of steel and
6. Script for calculation defined on S.N. 5 above
7. Effect of cooling rate on microstructure of steels
8. Effects of cooling rate on the microstructure and morphology of SAC alloy


ThermoCalc Software and Literature Study
1. Homepage
2. Scheil-Gulliver model for the solidification of Steel
3. Thermodynamic and Kinetic Database Development for Microsoldering Alloy Systems
4. Thermodynamic database on microsolders and copper based alloys
5. Examples/Tutorials in the ThermoCalc Software
Last edited by annier on 17 Feb 2016, 09:40, edited 9 times in total.
Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
annier
Posts: 1168
Joined: 27 Aug 2013, 13:51
Antispam: Yes

Re: Using multiple softwares for performing a simulation

Post by annier »

CUED thesis template in latex
underlining in the latex templates
http://tex.stackexchange.com/questions/ ... em-nesting
http://texdoc.net/texmf-dist/doc/generic/ulem/ulem.pdf
http://www.howtotex.com/other/underlini ... l-package/
http://tex.stackexchange.com/questions/ ... s-and-cons

latex community notes on special characters in latex
wikibooks notes on special characters in latex
Declaring math operators in latex - illustration via trace of a matrix

citation of webpage in latex
How to cite webpage in latex

notes about writing url in the latex
notes on writing verbatim in latex

Code: Select all

\usepackage{fancyvrb}
...
\begin{verbatim}
Type the code here
\end{verbatim}
Syntax highlighting in Latex

Code: Select all

\documentclass{article}
\usepackage{listings}

\begin{document}
\begin{lstlisting}[language=html]
<html>
    <head>
        <title>Hello</title>
    </head>
    <body>Hello</body>
</html>
\end{lstlisting}
\end{document}

Code: Select all

\documentclass{article}
\usepackage{minted}
\begin{document}

\begin{minted}{html}
    <!DOCTYPE html>
    <html>
       <head>
           <title>Hello</title>
       </head>

       <body>Hello</body>
    </html>
\end{minted}
\end{document}
Notes on syntax highlighting with illustrations via overleaf online latex

Code: Select all

\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{fullpage}

\usepackage{listings}
\usepackage{color}

\title{Syntax Highlighting in LaTeX with the listings Package}
\author{writeLaTeX}

\definecolor{mygreen}{rgb}{0,0.6,0}
\definecolor{mygray}{rgb}{0.5,0.5,0.5}
\definecolor{mymauve}{rgb}{0.58,0,0.82}

\lstset{ %
  backgroundcolor=\color{white},   % choose the background color
  basicstyle=\footnotesize,        % size of fonts used for the code
  breaklines=true,                 % automatic line breaking only at whitespace
  captionpos=b,                    % sets the caption-position to bottom
  commentstyle=\color{mygreen},    % comment style
  escapeinside={\%*}{*)},          % if you want to add LaTeX within your code
  keywordstyle=\color{blue},       % keyword style
  stringstyle=\color{mymauve},     % string literal style
}

\begin{document}

\maketitle

\section{Java}
\begin{lstlisting}[language=java]
class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Display the string.
        for (int i = 0; i < 100; ++i) {
            System.out.println(i);
        }
    }
}
\end{lstlisting}

\section{Python}
% from http://wiki.scipy.org/Numpy_Example_List
\begin{lstlisting}[language=python]
>>> from numpy import *
>>> from numpy.fft import *
>>> signal = array([-2., 8., -6., 4., 1., 0., 3., 5.])
>>> fourier = fft(signal)
>>> N = len(signal)
>>> timestep = 0.1 # if unit=day -> freq unit=cycles/day
>>> freq = fftfreq(N, d=timestep) # freqs corresponding to 'fourier'
>>> freq
array([ 0. , 1.25, 2.5 , 3.75, -5. , -3.75, -2.5 , -1.25])
>>> fftshift(freq) # freqs in ascending order
array([-5. , -3.75, -2.5 , -1.25, 0. , 1.25, 2.5 , 3.75])
\end{lstlisting}

\section{MATLAB/Octave}
% from http://wiki.scipy.org/Numpy_Example_List
\begin{lstlisting}[language=octave]
octave:1> function xdot = f (x, t)
>
>  r = 0.25; k = 1.4;
>  a = 1.5; b = 0.16; c = 0.9; d = 0.8;
>
>  xdot(1) = r*x(1)*(1 - x(1)/k) - a*x(1)*x(2)/(1 + b*x(1));
>  xdot(2) = c*a*x(1)*x(2)/(1 + b*x(1)) - d*x(2);
>
> endfunction
\end{lstlisting}

\end{document}
Finding the available fonts in Ubuntu for a given language
1. Type in the terminal the following:

Code: Select all

username@username-Aspire-1602M:~$ fc-list :lang=zh

2. The output will be provided as the following:

Code: Select all

username@username-Aspire-1602M:~$ fc-list :lang=zh 
/usr/share/fonts/truetype/arphic/ukai.ttc: AR PL UKai CN:style=Book
/usr/share/fonts/truetype/arphic/ukai.ttc: AR PL UKai HK:style=Book
/usr/share/fonts/truetype/wqy/wqy-microhei.ttc: WenQuanYi Micro Hei,文泉驛微米黑,文泉驿微米黑:style=Regular
/usr/share/fonts/X11/misc/wenquanyi_10ptb.pcf: WenQuanYi Bitmap Song:style=Bold
/usr/share/fonts/truetype/arphic-bkai00mp/bkai00mp.ttf: AR PL KaitiM Big5,文鼎PL中楷:style=Regular
/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc: WenQuanYi Zen Hei,文泉驛正黑,文泉驿正黑:style=Regular
/usr/share/fonts/X11/misc/wenquanyi_12pt.pcf: WenQuanYi Bitmap Song:style=Regular
/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc: WenQuanYi Zen Hei Sharp,文泉驛點陣正黑,文泉驿点阵正黑:style=Regular
/usr/share/fonts/zh_CN/simsun.ttc: SimSun,宋体:style=Regular
/usr/share/fonts/truetype/cwtex/cwfs.ttf: cwTeXFangSong,cwTeX 仿宋體:style=Medium
/usr/share/fonts/X11/misc/wenquanyi_10pt.pcf: WenQuanYi Bitmap Song:style=Regular
/usr/share/fonts/zh_CN/simkai.ttf: KaiTi,楷体:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/misc/wenquanyi_9pt.pcf: WenQuanYi Bitmap Song:style=Regular
/usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf: Droid Sans Fallback:style=Regular
/usr/share/fonts/truetype/moe/MoeStandardSong.ttf: MOESongUN,教育部標準宋體UN:style=Regular
/usr/share/fonts/X11/misc/wenquanyi_11pt.pcf: WenQuanYi Bitmap Song:style=Regular
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolHei-Regular.otf: FandolHei:style=Regular
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolHei-Bold.otf: FandolHei:style=Bold
/usr/share/fonts/zh_CN/simhei.ttf: SimHei,黑体:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/misc/wenquanyi_9ptb.pcf: WenQuanYi Bitmap Song:style=Bold
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolFang-Regular.otf: FandolFang,FandolFang R:style=Regular
/usr/share/fonts/truetype/arphic-gkai00mp/gkai00mp.ttf: AR PL KaitiM GB,文鼎PL简中楷:style=Regular
/usr/share/fonts/X11/misc/wenquanyi_11ptb.pcf: WenQuanYi Bitmap Song:style=Bold
/usr/share/fonts/zh_CN/simsun.ttc: NSimSun,新宋体:style=Regular
/usr/share/fonts/truetype/arphic-gbsn00lp/gbsn00lp.ttf: AR PL SungtiL GB,文鼎PL简报宋:style=Regular
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolSong-Regular.otf: FandolSong:style=Regular
/usr/share/fonts/truetype/cwtex/cwkai.ttf: cwTeXKai,cwTeX 楷書:style=Medium
/usr/share/fonts/truetype/arphic-bsmi00lp/bsmi00lp.ttf: AR PL Mingti2L Big5,文鼎PL細上海宋:style=Reguler,Regular
/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc: WenQuanYi Zen Hei Mono,文泉驛等寬正黑,文泉驿等宽正黑:style=Regular
/usr/share/fonts/truetype/arphic/uming.ttc: AR PL UMing CN:style=Light
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolSong-Bold.otf: FandolSong:style=Bold
/usr/share/fonts/truetype/arphic/uming.ttc: AR PL UMing HK:style=Light
/usr/share/fonts/truetype/wqy/wqy-microhei.ttc: WenQuanYi Micro Hei Mono,文泉驛等寬微米黑,文泉驿等宽微米黑:style=Regular
/usr/share/fonts/truetype/cwtex/cwheib.ttf: cwTeXHeiBold,cwTeX 粗黑體:style=Medium
/usr/local/texlive/2015/texmf-dist/fonts/opentype/public/fandol/FandolKai-Regular.otf: FandolKai:style=Regular
/usr/share/fonts/zh_CN/simfang.ttf: FangSong,仿宋:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/misc/wenquanyi_12ptb.pcf: WenQuanYi Bitmap Song:style=Bold
3. In Texlive Latex, while using Xelatex(Xetex), the name of the fonts will be the name as provided within the two full colons e.g. :AR PL UKai CN : and so on : ... :.
4. For example,

Code: Select all

\documentclass{article}
\usepackage{fontspec}
\usepackage{xeCJK}
\XeTeXlinebreaklocale "zh"
\XeTeXlinebreakskip = 0pt plus 1pt
%Select fonts
\setmainfont[Mapping=tex-text]{Times New Roman} % rm
\setsansfont[Mapping=tex-text]{Arial}           % sf
\setmonofont{Courier New}                       % tt
\setCJKmainfont{WenQuanYi Zen Hei} %xelatex 標楷體
%\setCJKmonofont{SimSun}  %xelatex 細明體
\setCJKmonofont{AR PL UKai CN}  %xelatex 細明體
%...
\begin{document}
中文字的測試
\end{document}
Reference_1
Reference_2
Reference_3
Reference_4
Reference_5
Steps in Ubuntu 14.04 for several solution strategies (includes information about using windows fonts)

Chinese language input method in ubuntu 14.04
1. http://www.cnblogs.com/bluestorm/p/3731330.html
2. http://pinyin.sogou.com/linux/?r=pinyin and http://pinyin.sogou.com/linux/help.php

Steps:
1. Add the nightly ppa repository.
2. Add the sogoupinyin from launchpad
Last edited by annier on 21 Mar 2016, 11:45, edited 11 times in total.
Anil Kunwar
Faculty of Mechanical Engineering, Silesian University of Technology, Gliwice
Post Reply