physics and other packages in tikzjax

I wanted to add few physics diagrams, most of them use physics package which does not come with tikzjax. See an example:

\documentclass[border=3pt,tikz]{standalone}
\usepackage{amsmath} % for \dfrac
\usepackage{physics}
\usepackage{tikz,pgfplots}
\usetikzlibrary{angles,quotes} % for pic (angle labels)
\usetikzlibrary{decorations.markings}
\tikzset{>=latex} % for LaTeX arrow head

\usepackage{xcolor}
\colorlet{Ecol}{orange!90!black}
\colorlet{veccol}{green!45!black}
\tikzstyle{EField}=[thick,Ecol]
\def\xmax{5.0}
\def\ymax{3.3}
\def\tick#1#2{\draw[thick] (#1) ++ (#2:0.03*\ymax) --++ (#2-180:0.06*\ymax)}


\begin{document}


% ELECTRIC FIELD of a ROD
\begin{tikzpicture}
  
  \def\kQ{2.0}
  \coordinate (O) at (0,0);
  \coordinate (X) at (\xmax,0);
  \coordinate (Y) at (0,\ymax);
  
  % AXIS
  \draw[<->,thick]
    (X) node[below] {$y$} -- (O) -- (Y) node[left] {$E$};
  
  % PLOT
  \draw[EField,samples=100,smooth,variable=\x,domain={1.1*\kQ/\ymax}:0.96*\xmax]
    plot(\x,\kQ/\x);
  \node[above right] at (1.3,1.6) {$E \sim \dfrac{1}{y}$};
  
\end{tikzpicture}
\end{document}

Please help me out in adding physics and other packages