Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proper unit for gamma. It is computed as the square root of something. #4377

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modelica/Electrical/Spice3.mo
Original file line number Diff line number Diff line change
Expand Up @@ -6528,7 +6528,7 @@ This function mosfetRenameParametersDev assigns the external (given by the user)
SI.Voltage m_phi( start = 0.6)
"PHI, Surface potential";
Real m_phiIsGiven "Phi IsGivenValue";
SI.Voltage m_gamma( start = 0.0)
Real m_gamma(final unit="V(1/2)", start = 0.0)
"GAMMA, Bulk threshold parameter";
Real m_gammaIsGiven "Gamma IsGivenValue";
SI.InversePotential m_lambda "Channel-length modulation";
Expand Down Expand Up @@ -6568,7 +6568,7 @@ This function mosfetRenameParametersDev assigns the external (given by the user)
Real m_oxideCapFactor;
SI.Voltage m_vt0;
SI.Voltage m_phi;
Real m_gamma;
Real m_gamma(final unit="V(1/2)");
SI.Transconductance m_transconductance;

annotation (Documentation(info="<html>
Expand Down