100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Physics for computer science assignment 4 answers $7.63   Add to cart

Exam (elaborations)

Physics for computer science assignment 4 answers

 7 views  0 purchase
  • Course
  • Institution

Physics for computer science completed assignments, IE University, bachelor of computer science and AI. The four assignments include completed exercises with calculations, formulas and visuals. Assignment 1: Static fields, Magnetic fields, Electrical fields Assignment 2: Current, EMF, Magnetic ...

[Show more]

Preview 2 out of 10  pages

  • May 20, 2023
  • 10
  • 2021/2022
  • Exam (elaborations)
  • Questions & answers
avatar-seller
2022-04-24 13:51 Assignment4-Physics




Assignment 4: semiconductors and diodes
In [21]:
from IPython.display import YouTubeVideo



Problem 1
A NTC thermistor, like the one showed below, is a temperature sensor that takes advantage
of how a semiconductor negatively changes its conductivity as a function of temperature.
Suppose we take a piece of certain semiconductor. In order to use it as a temperature
sensor, we first need to calibrate it.

The following table shows experimental measurements of the conductivity as a function of
temperature.
In [2]:
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np


In [3]:
data=pd.read_csv('data_assig.csv')
data


Out[3]: Temperature (K) σ (Ωm)^(-1)
0 620.0 4725.059345
1 560.0 2245.760723
2 510.0 1147.862882
3 480.0 800.000000
4 430.0 481.025258
5 410.0 395.444694
6 330.0 390.507083
7 290.0 382.718994
8 257.0 333.691619
9 232.0 258.023930
10 200.0 168.526251
* a) Use any visualization package that you want to meaningfully represent the
conductivity as a function of temperature, and approximately identify the temperature
intervals in which the semiconductor is found to be in the intrinsic, saturation, and
extrinsic regime. (In Python there are many packages for visualization: matplotlib,
seaborn, pandas... although you may use other software that you feel more
comfortable with).(5 points).
In [30]:
# conductivity as a function of temprature

file:///Users/bestricemossberg/Downloads/Assignment4-Physics.html 1/10

, 2022-04-24 13:51 Assignment4-Physics


# assign values to variables
x=data['Temperature (K)']
y=data["σ (Ωm)^(-1)"]

# fit model
theta = np.polyfit(x, y, 3)

# define values of y_line
y_line = theta[3] + theta[2]*pow(x, 1) + theta[1]*pow(x, 2) + theta[0]*pow(x,

# plot the graph
plt.scatter(x,y)
plt.plot(x, y_line, "orange")
plt.title("Conductivity as a function of temperature")
plt.xlabel("Temperature (K)")
plt.ylabel("σ (Ωm)^(-1)")
plt.show()




Method 1:
The conductivity of an intrinsic semiconductor increases as the temperature increases. For
an extrinsic semiconductor the conductivity decreases with the increase in temperature,
because the number of majority carriers is almost constant, while the mobility decreases,
which in turn leads to the conductivity decreasing.
Keeping this in mind, while looking at the plotted graph we can approximate the intrinsic
range from 620K to 410K, the saturation regime from 410K to 257K, and the extrinsic regime
from 257K to 200.
Method 2:
The image below shows the intrinsic, saturation, and extrinsic regime when log(σ) is plotted
as a function of 1/T. By plotting log(σ) as a function of 1/T we can compare the data to this
graph.



file:///Users/bestricemossberg/Downloads/Assignment4-Physics.html 2/10

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller beatricemossberg. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $7.63. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

75323 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$7.63
  • (0)
  Add to cart