How to calculate Hall Electrical Conductivity with Calculator and examples

How to calculate Hall Electrical Conductivity with Calculator and examples

siemens/meter
T
m-3
C
siemens/meter
   

[insert_php]
if(isset($_POST[‘cal’]))
{
$σ=$_POST[‘con’];
$B=$_POST[‘mfd’];
$ne=$_POST[‘End’];
$e=-1.602176462e-19;
$σd=$_POST[‘dc’];
$σH=($σ*$B)/($ne*$e)* $σd;
echo ” Result is = $σH”;
}
[/insert_php]

Add a Comment