I am a beginner in Latex, trying to use it for an industrial document. I have tried to add a simple electrical diagram using the following code. However it is not easy for me to adjust the location of the diagram in the page. Moreover there are probably better ways or tools. Would someone suggest a more elegant solution?

\documentclass{article}
\usepackage[top=2cm, bottom=3cm, left=2cm, right=2 cm]{geometry} %Layout of page
\begin{document}
\begin{picture}(50,50)(-30,0)
\linethickness{1pt}
\put(0,50){\line (1,0){80}}
\put(50,50){\line (0,1){20}}
\put(60,50){\line (0,1){20}}
\put(70,50){\line (0,1){20}}
\put(80,50){\line (0,1){20}}
\put(48,75){1}
\put(58,75){3}
\put(68,75){5}
\put(78,75){7}
\put(0,40){\line (1,0){80,0}}
\put(50,40){\line (0,-1){20}}
\put(60,40){\line (0,-1){20}}
\put(70,40){\line (0,-1){20}}
\put(80,40){\line (0,-1){20}}
\put(48,5){2}
\put(58,5){4}
\put(68,5){6}
\put(78,5){8}
\end{picture}
\end{document}
I have added a short piece of code adding a ground wire. I have in mind to add to he right of the original schematic the same schematic, but with 20 wires and the short ground symbol between the two, slightly below. This placement does not matter too much, I am trying to understand wether all 3 diagrams should be a single block of code, or 3 that I could possibly locate individually...
\documentclass{article}
\begin{document}
\begin{picture}(50,20)(-270,-20) % Begin ground symbol
\linethickness{1pt}
\put(-70,10){\line (0,1){20}}
\put(-80,10){\line (1,0){20}}
\put(-75, 5){\line (1,0){10}}
\put(-72,0){\line (1,0){5}}
\end{picture} end % End ground symbol
\end{document}
,

