setup a-2

This commit is contained in:
2026-04-30 14:26:12 +09:00
parent d0cc2f5101
commit 5f9535dc46
10 changed files with 131 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
3.003, 3.03m, 3.005, 1.38m, 3.003, 0.92m
6.007, 6.07m, 6.004, 2.76m, 6.008, 1.84m
9.004, 9.11m, 9.003, 4.14m, 9.003, 2.76m
View File
+10
View File
@@ -180,6 +180,16 @@
pkgs.kdePackages.okular
];
};
devShells.plot = pkgs.stdenv.mkDerivation {
inherit name;
shellHook = ''
export PS1="${name} plot \w \$ "
'';
buildInputs = with pkgs; [
gnuplot
python3Minimal
];
};
devShells.pandoc = pkgs.stdenv.mkDerivation {
inherit name;
shellHook = ''
Binary file not shown.
Binary file not shown.
+68
View File
@@ -0,0 +1,68 @@
\documentclass[japanese,xelatex,a4paper,10.5pt,ja=standard]{bxjsarticle}
\usepackage{tex/preamble}
\usepackage{tex/experiment-title}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{cleveref}
\usepackage{multirow}
\usepackage{pgf}
\usepackage{tex/depD-bib}
\renewcommand\figurename{Fig. }
\renewcommand\tablename{Table }
\renewcommand\theequation{\thesection-\arabic{equation}}
\renewcommand\thefigure{\thesection-\arabic{figure}}
\renewcommand\thetable{\thesection-\arabic{table}}
\crefdefaultlabelformat{#1}
\crefname{figure}{Fig.}{Fig.}
\Crefname{figure}{Fig.}{Fig.}
\crefname{table}{Table}{Tables}
\Crefname{table}{Table}{Tables}
\crefname{equation}{Eq.}{Eq.}
\Crefname{equation}{Eq.}{Eq.}
\creflabelformat{equation}{(#1)}
\newcommand\resetrefcounter{
\setcounter{equation}{0}
\setcounter{figure}{0}
\setcounter{table}{0}
}
\reportauthor{柴田健琉}
\reporttitle{オームの法則とキルヒホッフの法則}
\reportdate{2026年}{04月}{30日}
\turnindate{2026年}{05月}{19日}
\schoolyear{2026}
\grade{3}
\department{電子制御工学科}
\subject{電子制御工学実験1}
\reportid{A-2}
\expgroup{-}
\seatingnum{15}
\addExperimentDate{2026年 04月 28日}
\addExperimentDate{2026年 05月 12日}
\addbibresource{./bibs/a-2.bib}
\begin{document}
\experimentTitle
\section{実験目的}
今回の実験では,電気回路の基本的な法則が現実の回路でも成り立つかを確認するために行った.
\section{まとめ}
今回の実験より以下の事が分かった:
\begin{itemize}
\item{abc}
\item{abc}
\item{abc}
\end{itemize}
\printbibliography[title={参考文献}]{}
\end{document}
View File
+50
View File
@@ -0,0 +1,50 @@
\section{実験結果}
\subsection{実験1}
\subsection{実験2}
\subsubsection{回路1}
At E1 = 15.000, E2 = 3.005
I1 = -3.28m, V1 = 10.69
I2 = 1.31m, V2 = 1.296
I3 = 1.98m, V3 = 4.297
\subsubsection{回路2}
At E1 = 15.000, E2 = -3.007
I1 = 4.33m, V1 = 14.10
I2 = -3.93m, V2 = -3.891
I3 = -0.40m, V3 = 0.890
\subsection{実験3}
\subsubsection{E1 only}
At E1 = 15.000
I1 = 3.81m, V1 = 12.40
I2 = 2.61m, V2 = 2.596
I3 = 1.19m, V3 = 2.593
\subsubsection{E2 only}
At E2 = 3.004
I1 = 0.52m, V1 = -1.705
I2 = 1.31m, V2 = -1.294
I3 = 0.78m, V3 = 1.704
\subsection{実験4}
Calculated value: R_t = \frac{R_{1} R_{2}}{R_1 + R_2} = 1320, V_t = \frac{R_{2}E_{1}}{R_1 + R_2} = 6
without vr: 2.595V, 2.62mA
with vr:
View File
View File