forked from fossasia/pslab-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add md documentation for diode_IV, schematic
issue fossasia#108
- Loading branch information
Showing
11 changed files
with
1,684 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
<!-- _includes/base.html --> | ||
|
||
|
||
|
||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Diode IV</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<title>PSLab help</title> | ||
|
||
<!-- core CSS --> | ||
<link href="../css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="../css/main.css" rel="stylesheet"> | ||
<link href="../css/highlight.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body class="homepage"> | ||
|
||
<header id="header"> | ||
|
||
<nav class="navbar navbar-inverse" role="banner"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header pull-left"> | ||
<a class="navbar-brand" href="../index.html"><img src="../images/logo.png" style="max-height:50px;background:#7a7;" alt="logo"></a> | ||
</div> | ||
<ul class="nav navbar-nav pull-left"> | ||
<li ><a href="../index.html">Home</a></li> | ||
<li ><a href="../utilities/index.html">Utilities</a></li> | ||
<li ><a href="../apps/index.html">Experiments</a></li> | ||
</ul> | ||
<!-- | ||
<form class="navbar-form navbar-left"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" placeholder="Search"> | ||
</div> | ||
<button type="submit" class="btn btn-default">Submit</button> | ||
</form> | ||
--> | ||
</div> | ||
</nav> | ||
|
||
|
||
|
||
</header><!--/header--> | ||
|
||
<!-- _includes/base.html --> | ||
|
||
|
||
|
||
|
||
<!-- _includes/base.html --> | ||
|
||
|
||
|
||
|
||
<div id="mySidenav" class="sidenav"> | ||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a> | ||
<a href="../utilities/index.html"> Utilities Section </a> | ||
<a href="../apps/index.html"> Experiments Section </a> | ||
<hr> | ||
<ul> | ||
|
||
|
||
|
||
</ul> | ||
<hr> | ||
<ul> | ||
|
||
<li><a href="../apps/B_LEMON_CELL.html" title="Lemon cell">Lemon cell</a></li> | ||
|
||
<li><a href="../apps/C_AC_GENERATOR.html" title="AC Generator">AC Generator</a></li> | ||
|
||
<li><a href="../apps/astable-multivibrator.html" title="Astable Multivibrator">Astable Multivibrator</a></li> | ||
|
||
<li><a href="../apps/A_AC_AND_DC.html" title="AC and DC">AC and DC</a></li> | ||
|
||
<li><a href="../apps/D_diodeIV.html" title="Diode IV">Diode IV</a></li> | ||
|
||
|
||
|
||
</ul> | ||
|
||
</div> | ||
<div style="padding:10px;"><span id="menubutton" style="font-size:30px;cursor:pointer;" onclick="openNav()">☰ Experiments</span></div> | ||
|
||
<div id="main"> | ||
|
||
|
||
<div class="center wow fadeInDown"> | ||
<br><h2>Diode IV</h2> | ||
<p class="lead"> Diode I-V Characteristics</p> | ||
</div> | ||
|
||
|
||
<section id="recent-works"> | ||
<div class="container"> | ||
|
||
|
||
<p><img src="images/schematics/diodeIV.svg" alt="" width="400px" /></p> | ||
|
||
<p>Connect the Diode from CH3 to Ground. | ||
Connect a 1k resistor from PV1 to CH3.</p> | ||
|
||
<p>PV1 is varied in steps, and for each step the current is calculated from the difference between voltages at PV1 and CH3, and the known value of the resistor | ||
Acquired plots can be selectively displayed or deleted.</p> | ||
|
||
|
||
|
||
</div> | ||
|
||
<script type="text/javascript"> | ||
var linkElement = document.createElement("link"); | ||
linkElement.rel = "stylesheet"; | ||
linkElement.href = "../css/leftnav.css"; | ||
document.head.appendChild(linkElement); | ||
|
||
function openNav() { | ||
document.getElementById("mySidenav").style.width = "250px"; | ||
document.getElementById("main").style.marginLeft = "250px"; | ||
document.getElementById("menubutton").style.visibility = "hidden"; | ||
} | ||
|
||
function closeNav() { | ||
document.getElementById("mySidenav").style.width = "0"; | ||
document.getElementById("main").style.marginLeft= "0"; | ||
document.getElementById("menubutton").style.visibility = "visible"; | ||
} | ||
|
||
</script> | ||
|
||
|
||
|
||
|
||
<div class="footer navbar-fixed-bottom" > | ||
<footer > | ||
<div class="container"> | ||
<ul> | ||
<li><a href="mailto:[email protected]">bug-reports</a></li> | ||
<li><a href="https://fossasia.org/pslab">fossasia.org/pslab</a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
<!-- | ||
<script src="/js/jquery.js"></script> | ||
<script src="/js/bootstrap.min.js"></script> | ||
<script src="/js/jquery.prettyPhoto.js"></script> | ||
<script src="/js/jquery.isotope.min.js"></script> | ||
<script src="/js/main.js"></script> | ||
<script src="/js/wow.min.js"></script> | ||
--> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.