Skip to content
Snippets Groups Projects
Commit dc05bc3e authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Completed the simulation part of the README.

Moved the low level description out of this README.
parent 06ece258
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,6 @@ and are placed on top of a custom pan&tilt platform. ...@@ -31,10 +31,6 @@ and are placed on top of a custom pan&tilt platform.
A fully featured gazebo model is also provided to test the robot in simulation. A fully featured gazebo model is also provided to test the robot in simulation.
# Robot description
# Procedures # Procedures
Here are the basic precedures to use the robot. Please follow them carefully Here are the basic precedures to use the robot. Please follow them carefully
...@@ -44,50 +40,6 @@ whenever you need to use the robot. ...@@ -44,50 +40,6 @@ whenever you need to use the robot.
* Battery management: * Battery management:
# Dependencies
The required common dependencies for both the simulated and the real Ana robot
are listed below:
* [iri_ana_description](https://gitlab.iri.upc.edu/labrobotica/ros/robots/ana/iri_ana_description)
In order to use the real robot, the following dependencies are also required:
* [iri_ana_bringup](https://gitlab.iri.upc.edu/labrobotica/ros/robots/ana/iri_ana_bringup)
To build the workspace, make sure to follow the installation and setup
instructions from each of the packages above and their respective dependencies.
In order to use the robot in simulation, the following dependencies are also
required:
* [iri_ana_gazebo](https://gitlab.iri.upc.edu/labrobotica/ros/robots/ana/iri_ana_gazebo)
To use the simulator, make sure to follow the installation and setup instructions
from each of the packages above and their respective dependencies.
# Install
All these ROS packages, and their dependencies, can be manually added to the
ROS workspace. A simpler option is to use one of the rosinstall files provided
with this repository:
* real_ana.rosinstall: all the necessary packages to set up the real robot.
* sim_ana.rosinstall: all the necessary packages to use the robot in simulation.
See the [wstool](http://wiki.ros.org/wstool) documentation for more details on
how to initialize the workspace and merge a rosinstall file with it.
# How to use the real robot
To set up and use the real robot, follow the instructions in the
[iri_ana_bringup](https://gitlab.iri.upc.edu/labrobotica/ros/robots/ana/iri_ana_bringup)
ROS package.
Also, carefully follow the procedures listed above to correctly handle the
robot.
# How to use the simulated robot # How to use the simulated robot
A Gazebo model for the Ana platform and all its sensors is provided to speed up the testing A Gazebo model for the Ana platform and all its sensors is provided to speed up the testing
...@@ -101,20 +53,22 @@ To set up the simulator, please follow the next steps: ...@@ -101,20 +53,22 @@ To set up the simulator, please follow the next steps:
sudo apt-get install ros-kinetic-velodyne-description ros-kinetic-velodyne-gazebo-plugins ros-kinetic-hector-gazebo-plugins sudo apt-get install ros-kinetic-velodyne-description ros-kinetic-velodyne-gazebo-plugins ros-kinetic-hector-gazebo-plugins
``` ```
* If you want to use a new ROS workspace: If you want to use a new ROS workspace:
* create a new workspace following the steps in this [tutorial](http://wiki.ros.org/catkin/Tutorials/create_a_workspace). * Create a new workspace following the steps in this [tutorial](http://wiki.ros.org/catkin/Tutorials/create_a_workspace).
* Copy the ana_sim.rosinstall file to the src folder of the new workspace. * Copy the ana_sim.rosinstall file to the src folder of the new workspace.
* Initialize the wstool tool on the src folder following the steps in this [tutorial](http://wiki.ros.org/wstool) using * Initialize the wstool tool on the src folder following the steps in this [tutorial](http://wiki.ros.org/wstool) using
the ana_sim.rosinstall file available on this repository. From the src folder, execute: the ana_sim.rosinstall file available on this repository. From the src folder, execute:
``` ```
roscd
cd ../src
wstool init ana_sim.rosinstall wstool init ana_sim.rosinstall
``` ```
* If you want to use an existing ROS workspace: If you want to use an existing ROS workspace:
* Copy the ana_sim.rosinstall file to the src folder of the existing workspace. * Copy the ana_sim.rosinstall file to the src folder of the existing workspace.
...@@ -122,6 +76,8 @@ wstool init ana_sim.rosinstall ...@@ -122,6 +76,8 @@ wstool init ana_sim.rosinstall
in this [tutorial](http://wiki.ros.org/wstool). From the src folder, execute: in this [tutorial](http://wiki.ros.org/wstool). From the src folder, execute:
``` ```
roscd
cd ../src
wstool merge ana_sim.rosinstall wstool merge ana_sim.rosinstall
``` ```
...@@ -134,7 +90,8 @@ wstool update ...@@ -134,7 +90,8 @@ wstool update
* compile the newly downloaded packages with the following command: * compile the newly downloaded packages with the following command:
``` ```
catkin_make --only-pkg-with-deps iri_ana_gazebo cd ..
catkin_make
``` ```
Once the setup process is complet, start the simulator with the following command Once the setup process is complet, start the simulator with the following command
...@@ -147,14 +104,43 @@ This command should launch the robot with all its sensors in an empty environmen ...@@ -147,14 +104,43 @@ This command should launch the robot with all its sensors in an empty environmen
sensor data. The name and namespace of all topics, services and actions are exactly the same as in the real robot, although sensor data. The name and namespace of all topics, services and actions are exactly the same as in the real robot, although
not all of them are available. not all of them are available.
A complete list of all ROS interfaces is shown here: A complete list of all ROS interfaces is shown [here]().
# How to use the real robot
The robot's on-board computer has all the necessary ROS nodes to operate the robot
and it is fully configured.
IMPORTANT: when using the real robot, make sure you follow all the procedures listed [here]()
to start, operate, shut down and handle the batteries.
There are two ways to connect to the robot using an external computer:
* Wireless: the robot creates a hot spot
* Cable:
Once connected to the same network, configure the external computer following the instructions
in this [tutorial](http://wiki.ros.org/ROS/Tutorials/MultipleMachines).
At this point, you should have acces to all the topic, services and action provided by the robot.
A complete list of all ROS interfaces is shown [here]().
## What to do next ## What to do next
To change the simulated environment edit the [] file and All the tutorial included in this section can be used both in simulation or with the real robot.
* To teleoprate the robot, follow the instructions in this tutorial[]
* To create a map of the simulated environment, follow the instructions in this tutorial[]
* To navigate the robot in the new environment, follow the instructions in this tutorial[]
Some tutorials specific to the simulated robot:
To teleoprate the robot, follow the instructions in this tutorial[] * To change the simulated environment edit the [] file and
To create a map of the simulated environment, follow the instructions in this tutorial[] # Developers
To navigate the robot in the new environment, follow the instructions in this tutorial[] For advanced users and developers, [here]() there is amore in depth information about the Ana robot
and all its dependencies.
\relax
\select@language{english}
\@writefile{toc}{\select@language{english}}
\@writefile{lof}{\select@language{english}}
\@writefile{lot}{\select@language{english}}
\@writefile{toc}{\contentsline {section}{\numberline {1}Description}{1}}
\@writefile{toc}{\contentsline {section}{\numberline {2}Preliminary considerations}{1}}
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Image of the payload battery used for the Ana and Helena robots.}}{1}}
\newlabel{img_payload_bat}{{1}{1}}
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Image of the motors battery used for the Ana and Helena robots.}}{2}}
\newlabel{img_motors_bat}{{2}{2}}
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Specifications of both the motors and payload batteries.}}{2}}
\newlabel{tab_specs}{{1}{2}}
\@writefile{toc}{\contentsline {section}{\numberline {3}Change batteries}{2}}
\newlabel{proc_change_bat}{{3}{2}}
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Battery compartment with the motor battery on the left and the payload battery on the right}}{3}}
\newlabel{img_bat_comp}{{3}{3}}
\@writefile{toc}{\contentsline {section}{\numberline {4}Charge batteries inside the robot}{3}}
\newlabel{proc_charge_inside}{{4}{3}}
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Front panel of the robot with the payload and motors charger connectors and fuses.}}{4}}
\newlabel{img_front_panel}{{4}{4}}
\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Output connectors of the chargers: a male connector on the left to charge the batteries inside the robot and a female connector on the right to charge them outside the robot.}}{5}}
\newlabel{img_connectors}{{5}{5}}
\@writefile{toc}{\contentsline {section}{\numberline {5}Charge batteries outside the robot}{5}}
\newlabel{proc_charge_outside}{{5}{5}}
This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2018.10.26) 31 OCT 2018 10:43
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**battery_management.tex
(./battery_management.tex
LaTeX2e <2016/02/01>
Babel <3.9q> and hyphenation patterns for 3 language(s) loaded.
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2014/09/29 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2016/02/24 3.9q The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2012/08/20 v3.3p English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2016/02/24 3.9q Babel common definitions
\babel@savecnt=\count87
\U@D=\dimen103
)
\l@british = a dialect from \language\l@english
\l@UKenglish = a dialect from \language\l@english
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2015/03/17 v1.2c Input encoding file
\inpenc@prehook=\toks14
\inpenc@posthook=\toks15
(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def
File: utf8x.def 2004/10/17 UCS: Input encoding UTF-8
))
(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty
Package: ucs 2013/05/11 v2.2 UCS: Unicode input support
(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def
File: uni-global.def 2013/05/13 UCS: Unicode global data
)
\uc@secondtry=\count88
\uc@combtoks=\toks16
\uc@combtoksb=\toks17
\uc@temptokena=\toks18
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks19
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2016/01/03 v1.0q Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 95.
(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count89
))
\Gin@req@height=\dimen104
\Gin@req@width=\dimen105
)
(/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen106
\WF@size=\dimen107
\c@WF@wrappedlines=\count90
\WF@box=\box26
\WF@everypar=\toks20
Package: wrapfig 2003/01/31 v 3.6
)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen108
)
(./battery_management.aux)
\openout1 = `battery_management.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 13.
LaTeX Font Info: ... okay on input line 13.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 13.
LaTeX Font Info: ... okay on input line 13.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 13.
LaTeX Font Info: ... okay on input line 13.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 13.
LaTeX Font Info: ... okay on input line 13.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 13.
LaTeX Font Info: ... okay on input line 13.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 13.
LaTeX Font Info: ... okay on input line 13.
(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def
File: ucsencs.def 2011/01/21 Fixes to fontencodings LGR, T3
)
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count91
\scratchdimen=\dimen109
\scratchbox=\box27
\nofMPsegments=\count92
\nofMParguments=\count93
\everyMPshowfont=\toks21
\MPscratchCnt=\count94
\MPscratchDim=\dimen110
\MPnumerator=\count95
\makeMPintoPDFobject=\count96
\everyMPtoPDFconversion=\toks22
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <12> on input line 15.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 15.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 15.
LaTeX Warning: Reference `' on page 1 undefined on input line 18.
LaTeX Warning: Reference `' on page 1 undefined on input line 18.
LaTeX Font Info: Try loading font information for OMS+cmr on input line 25.
(/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd
File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 25.
<./images/payload_battery.jpg, id=1, 3982.88pt x 2987.16pt>
File: ./images/payload_battery.jpg Graphic file (type jpg)
<use ./images/payload_battery.jpg>
Package pdftex.def Info: ./images/payload_battery.jpg used on input line 28.
(pdftex.def) Requested size: 172.5pt x 129.35698pt.
<./images/motors_battery.jpg, id=2, 3982.88pt x 2987.16pt>
File: ./images/motors_battery.jpg Graphic file (type jpg)
<use ./images/motors_battery.jpg>
Package pdftex.def Info: ./images/motors_battery.jpg used on input line 35.
(pdftex.def) Requested size: 172.5pt x 129.35698pt.
LaTeX Warning: `h' float specifier changed to `ht'.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 43.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 43.
LaTeX Warning: Reference `' on page 1 undefined on input line 69.
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./images/payload_battery.j
pg>]
LaTeX Warning: Reference `' on page 2 undefined on input line 76.
<./images/battery_compartment.jpg, id=14, 3982.88pt x 2987.16pt>
File: ./images/battery_compartment.jpg Graphic file (type jpg)
<use ./images/battery_compartment.jpg>
Package pdftex.def Info: ./images/battery_compartment.jpg used on input line 82
.
(pdftex.def) Requested size: 172.5pt x 129.35698pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<./images/attention.png, id=15, 235.88126pt x 215.80624pt>
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 93.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
[2 <./images/motors_battery.jpg>]
LaTeX Warning: Reference `' on page 3 undefined on input line 99.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 104.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
<./images/front_panel.jpg, id=20, 3982.88pt x 2987.16pt>
File: ./images/front_panel.jpg Graphic file (type jpg)
<use ./images/front_panel.jpg>
Package pdftex.def Info: ./images/front_panel.jpg used on input line 115.
(pdftex.def) Requested size: 172.5pt x 129.35698pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 123.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 124.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 131.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
[3 <./images/battery_compartment.jpg> <./images/attention.png>] <./images/conn
ectors.jpg, id=26, 3982.88pt x 2987.16pt>
File: ./images/connectors.jpg Graphic file (type jpg)
<use ./images/connectors.jpg>
Package pdftex.def Info: ./images/connectors.jpg used on input line 137.
(pdftex.def) Requested size: 172.5pt x 129.35698pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 155.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 156.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 157.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
[4 <./images/front_panel.jpg>]
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 169.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 170.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
File: ./images/attention.png Graphic file (type png)
<use ./images/attention.png>
Package pdftex.def Info: ./images/attention.png used on input line 176.
(pdftex.def) Requested size: 28.45274pt x 26.03064pt.
[5 <./images/connectors.jpg>] [6]
(./battery_management.aux)
LaTeX Warning: There were undefined references.
)
Here is how much of TeX's memory you used:
2299 strings out of 494953
33953 string characters out of 6180976
106262 words of memory out of 5000000
5545 multiletter control sequences out of 15000+600000
7934 words of font info for 28 fonts, out of 8000000 for 9000
14 hyphenation exceptions out of 8191
37i,15n,23p,346b,410s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></us
r/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb></usr/shar
e/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texl
ive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texlive/tex
mf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texlive/texmf-dist
/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/texlive/texmf-dist/fonts/
type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1/
public/amsfonts/cm/cmti10.pfb>
Output written on battery_management.pdf (6 pages, 11879068 bytes).
PDF statistics:
62 PDF objects out of 1000 (max. 8388607)
38 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 500000)
31 words of extra memory for PDF output out of 10000 (max. 10000000)
File deleted
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment