From 36fa29ce8c5352d884f7587b8e0e6993298fc515 Mon Sep 17 00:00:00 2001 From: Robin Clark Date: Thu, 14 Apr 2011 13:24:48 +0100 Subject: [PATCH] Non inv op amp example --- noninvopamp/Makefile | 19 +++++++++++++++++ noninvopamp/noninvopamp.tex | 39 ++++++++++++++++++++++++++++++++++ noninvopamp/paper.tex | 42 +++++++++++++++++++++++++++++++++++++ 3 files changed, 100 insertions(+) create mode 100644 noninvopamp/Makefile create mode 100644 noninvopamp/noninvopamp.tex create mode 100644 noninvopamp/paper.tex diff --git a/noninvopamp/Makefile b/noninvopamp/Makefile new file mode 100644 index 0000000..05846b5 --- /dev/null +++ b/noninvopamp/Makefile @@ -0,0 +1,19 @@ + +# + + +paper: paper.tex noninvopamp_paper.tex + #latex paper.tex + #dvipdf paper pdflatex cannot use eps ffs + pdflatex paper.tex + cp paper.pdf noninvopamp_paper.pdf + okular noninvopamp_paper.pdf + + +# Remove the need for referncing graphics in subdirectories +# +noninvopamp_paper.tex: noninvopamp.tex paper.tex + cat noninvopamp.tex | sed 's/noninvopamp\///' > noninvopamp_paper.tex + +bib: + bibtex paper diff --git a/noninvopamp/noninvopamp.tex b/noninvopamp/noninvopamp.tex new file mode 100644 index 0000000..40247fd --- /dev/null +++ b/noninvopamp/noninvopamp.tex @@ -0,0 +1,39 @@ + +\ifthenelse {\boolean{paper}} +{ +\abstract{ +This paper analyses a non-inverting op-amp +configuration, with the opamp and gain resistors using the FMMD +methodology. + +It has three base components, two resistors +and one op-amp. + +The two resistors are used as a potential divider to program the gain +of the amplifier. We consider the two resistors as a functional group +where the function is provides is to operate as a potential divider. + +The base component error modes of the +resistors are used to model the potential divider from +a failure mode perspective. + +We determine the failure symptoms of the potential divider and +consider these as failure modes of a derived component. + +We can now create a functional group representing the amplifier, +by bringing the failure modes from the potential divider and +the op-amp into a functional group. + +This can now be analysed and a derived component to represent th non inverting +amplifier determined. +} +} +{ +} + +\vspace{60pt} +$$ \int_{0\-}^{\infty} f(t).e^{-s.t}.dt \; | \; s \in \mathcal{C}$$ +\today + + $$\frac{-b\pm\sqrt{ {b^2-4ac}}}{2a}$$ +\today diff --git a/noninvopamp/paper.tex b/noninvopamp/paper.tex new file mode 100644 index 0000000..ebd4737 --- /dev/null +++ b/noninvopamp/paper.tex @@ -0,0 +1,42 @@ + +\documentclass[a4paper,10pt]{article} +\usepackage{graphicx} +\usepackage{fancyhdr} +\usepackage{tikz} +\usetikzlibrary{shapes,snakes} +\usepackage{amsfonts,amsmath,amsthm} +\input{../style} +\usepackage{ifthen} +\usepackage{lastpage} + +\newboolean{paper} +\setboolean{paper}{true} % boolvar=true or false + + +%\newtheorem{definition}{Definition:} + +\begin{document} +\pagestyle{fancy} +\fancyhf{} +%\renewcommand{\chaptermark}[1]{\markboth{ \emph{#1}}{}} +\fancyhead[LO]{} +\fancyhead[RE]{\leftmark} +%\fancyfoot[LE,RO]{\thepage} +\cfoot{Page \thepage\ of \pageref{LastPage}} +\rfoot{\today} +\lhead{Two stage FMMD analysis of a non inverting op-amp} + +%\outerhead{{\small\bf Developing a rigorous bottom-up modular static failure mode modelling methodology}} +%\innerfoot{{\small\bf R.P. Clark } } + % numbers at outer edges +\pagenumbering{arabic} % Arabic page numbers hereafter +\author{R.P.Clark} +\title{Two stage FMMD analysis of a non inverting op-amp} +\maketitle +\input{noninvopamp} + +\bibliographystyle{plain} +\bibliography{../vmgbibliography,../mybib} + +\today +\end{document}