【LaTeX】 案例分析 (3) - Visio in LaTeX

这是SEU新生研讨课作业。主要内容是学习Visio,不过也包括了LaTeX的复习。因为Visio做出来的矢量图是放在LaTeX中的。


四张图:
Figure 1:【Visio】 第二次尝试
Figure 2:【Visio】 第四次尝试 - 流程图
Figure 3:【Visio】 第三次尝试 - 电路图
Figure 4:【Visio】 第五次尝试


代码

About Metro.tex

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{listings}
\usepackage{appendix}
\usepackage{bm, amsmath, amsfonts}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{subfig}
\usepackage{url}
\usepackage{cite}
\usepackage[a4paper, left=2.5cm, right=2.5cm, top=2.65cm, bottom=2.54cm]{geometry}

\title{\Huge \bfseries The brake system of metro vehicles}
\author{\Large Teddy van Jerry}
\date{\today}

\pagestyle{fancy}
\fancyhf{}
\cfoot{\thepage}
\chead{ALL RIGHTS RESERVED \copyright \  2020 Teddy van Jerry }

\begin{document}

    \maketitle

    The brake system of metro vehicles is very complicated.
    Here I choose some of them to share with you
    with the assistance of pictures made by \emph{Visio 2016}.\\

    \section{The relationship between the brake system and other systems}

        \begin{figure}[h]
            \centering
            \includegraphics[width = \textwidth]{Metro 1.pdf}
            \caption{The relationship between metro vehicle brake system and other systems on the train\cite{Metro}}
            \label{Metro1}
        \end{figure}

        \begin{table}[h]
            \centering
            \caption{Meanings of abbreviation in Figure \ref{Metro1}}
            \begin{tabular}{|c|c|}
                \hline
                {\bfseries Abbreviation} & {\bfseries Meaning} \\
                \hline \hline
                RBX & a kind of local control board of Controller \\
                \hline
                BCU & Brake Control Unit \\
                \hline
                CAN & Controller Area Network \\
                \hline
                TCU & Traction Control Unit \\
                \hline
                TCMS & Train Control \& Management System \\
                \hline
                ATO & Automatic Train Operation system \\
                \hline
                MVB & Multifunction Vehicle Bus \\
                \hline
            \end{tabular}
        \end{table}

        During the manual operation mode,
        the traction or brake demand comes from the master controller,
        while the demand comes from ATO system during ATO mode.

        TCMS will transfer the brake demand from master controller or ATO system
        to traction system and brake system through MVB train BUS,
        and traction system will apply electrical dynamic brake during brake mode,
        and will send the real ED brake force to Gateway Valve.
        Then Gateway Valve will calculate the required brake force
        that shall be compensated by EP brake,
        and will distribute the friction EP brake on
        to relative bogies within the adhesion limitation level.

        The local RBX will execute the pneumatic brake force
        based on the request from Gateway Valve.\cite{Metro}

    \newpage

    \section{The process of fixing the calculation COF value}

        \begin{figure}[h]
            \centering
            \includegraphics[width = \textwidth]{Metro 3.pdf}
            \caption{\centering The process of fixing the calculation COF value for service brake control software and the relationship of emergency brake performance between ASP and BCP\cite{Metro}}
            \label{Metro3}
        \end{figure}

        From the brake force calculation diagram,
        we can see that based on the brake deceleration demand request from master controller or ATO system,
        the train mass calculated from the real ASP value and the relationship,
        the total brake force will be calculated by the Gateway Valve. 

        Electrical dynamic brake force will be applied firstly,
        and feedback the real ED brake force to Gateway Valve through MVB train BUS,
        and then Gateway Valve will calculate the pneumatic brake force to meet the total required brake force.
        After that,
        Gateway Valve will distribute the EP friction brake force onto individual bogies equally under the adhesion limit of each bogie.

        The local brake control will output the brake control pressure to the corresponding bogie mounted friction brake unit
        to realize the friction brake force based on the request from gateway valve through CAN internal BUS.

        For emergency brake,
        the brake force is automatically applied based on local bogie’s load signal (ASP value).

        COF value for service brake and emergency brake application
        and the relationship between ASP to emergency brake cylinder pressure will be verified and fixed during type test. \\

        In figure \ref{Metro3},
        there are three formulas:\\

        \begin{equation}
            \Sigma F_{\rm Bd} = \Sigma M \cdot a_e
        \end{equation}

        \begin{equation}
            \Sigma F_{\rm B} = \Sigma F_{\rm Bd} - \Sigma F_{\rm BED}
        \end{equation}

        \begin{equation}
            F_{\rm B} = f(p_c)
        \end{equation}

    \newpage


    \section{Air dryer unit}

        \begin{figure}[h]
            \centering
            \includegraphics[width = \textwidth]{Metro 2.pdf}
            \caption{Air dryer unit}
            \label{Metro2}
        \end{figure}

        The scheme shows the dual towel air dryer unit testing device and test installation.
        On the right part of the scheme is the test bench,
        which includes DC 24V power supply for the indicating lamps S1 and S2,
        while the left part of the scheme shows the dual towel air dryer unit with two pressure switches,
        when one towel of the air dryer unit is in working status,
        the compressed air within this towel will press the corresponding pressure switch to connect the contacts,
        and the indicating lamp S1 or S2 will be powered on.

    \newpage

    \section{Deceleration brake control system}

        \begin{figure}[h]
            \centering
            \includegraphics[width = \textwidth]{Metro 4.pdf}
            \caption{\centering The process of fixing the calculation COF value for service brake control software and the relationship of emergency brake performance between ASP and BCP\cite{Metro}}
            \label{Metro4}
        \end{figure}

        The diagram shows the configuration of deceleration brake control system.
        Each brake control unit will detect the local deceleration rate through the integrated accelerometer
        within the brake control unit,
        and share the deceleration information onto the CAN internal BUS.
        The CCU within Gateway Valve will collect all deceleration data within the CAN BUS,
        and will calculate the deceleration for whole train’s further control function based on real deceleration. \\

    \section*{Appendix}

        \ \ \ \ This passage is compiled by \LaTeX.\\

        You can get my \LaTeX \ code and jpg pictures in my CSDN blog:

        Code:\hspace{14pt}
        \url{https://blog.csdn.net/weixin_50012998/article/details/109293594}
    
        Figure \ref{Metro1}:
        \url{https://blog.csdn.net/weixin_50012998/article/details/109275075}

        Figure \ref{Metro3}:
        \url{https://blog.csdn.net/weixin_50012998/article/details/109290991}

        Figure \ref{Metro2}:
        \url{https://blog.csdn.net/weixin_50012998/article/details/109288181}

        Figure \ref{Metro4}:
        \url{https://blog.csdn.net/weixin_50012998/article/details/109293181}

    \bibliographystyle{unsrt} % setting the cite style
    \bibliography{ref}

\end{document}

ref.bib

@article{Metro,
  title   = {New generation brake control technology on metro vehicle with deceleration control function},
  author  = {Jianfei ZHAO},
  year    = {2019},
  month   = {November},
  journal = {Modern Urban Transit},
  volume  = {11},
  number  = {1},
  pages   = {39-46}
}

界面

0

效果

1
2
3
4

分析

  • 运用了参考文献(Bibtex),交互式引用等内容。
  • 插入的矢量图为pdf格式。
  • 数学公式中\rm命令使字体变为正体。
  • (最近非常忙,之后再继续)

See also

Teddy van Jerry 的导航页
【LaTeX】 案例分析 (1)
【LaTeX】 案例分析 (2)
【LaTeX】 LaTeX(VSC/2020)的下载

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值