Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion docs/api/spice.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,21 @@ Sources
:toctree: _autosummary/
:template: module.rst

tidy3d.SSACVoltageSource
tidy3d.DCVoltageSource
tidy3d.GroundVoltageSource
tidy3d.DCCurrentSource


Analysis
----------------

.. autosummary::
:toctree: _autosummary/
:template: module.rst

tidy3d.SteadyChargeDCAnalysis
tidy3d.IsothermalSteadyChargeDCAnalysis
tidy3d.AbstractSSACAnalysis
tidy3d.SSACAnalysis
tidy3d.IsothermalSSACAnalysis
tidy3d.ChargeToleranceSpec
2 changes: 1 addition & 1 deletion docs/lectures/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Welcome to our lecture series!

.. include:: /lectures/fdtd101.rst
.. include:: /lectures/fdtd_workshop.rst
.. include:: /lectures/inversedesign.rst
.. include:: /lectures/inversedesign.rst
163 changes: 162 additions & 1 deletion schemas/HeatChargeSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -3042,6 +3042,7 @@
"type": "number"
},
"name": {
"minLength": 1,
"type": "string"
},
"type": {
Expand All @@ -3065,6 +3066,7 @@
"type": "object"
},
"name": {
"minLength": 1,
"type": "string"
},
"type": {
Expand Down Expand Up @@ -4105,6 +4107,23 @@
],
"type": "object"
},
"GroundVoltageSource": {
"additionalProperties": false,
"properties": {
"attrs": {
"default": {},
"type": "object"
},
"type": {
"default": "GroundVoltageSource",
"enum": [
"GroundVoltageSource"
],
"type": "string"
}
},
"type": "object"
},
"HammerstadSurfaceRoughness": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -4489,6 +4508,58 @@
},
"type": "object"
},
"IsothermalSSACAnalysis": {
"additionalProperties": false,
"properties": {
"attrs": {
"default": {},
"type": "object"
},
"convergence_dv": {
"default": 1.0,
"exclusiveMinimum": 0,
"type": "number"
},
"fermi_dirac": {
"default": false,
"type": "boolean"
},
"ssac_freqs": {
"type": "ArrayLike"
},
"temperature": {
"default": 300,
"exclusiveMinimum": 0,
"type": "number"
},
"tolerance_settings": {
"allOf": [
{
"$ref": "#/definitions/ChargeToleranceSpec"
}
],
"default": {
"abs_tol": 10000000000.0,
"attrs": {},
"max_iters": 30,
"ramp_up_iters": 1,
"rel_tol": 1e-10,
"type": "ChargeToleranceSpec"
}
},
"type": {
"default": "IsothermalSSACAnalysis",
"enum": [
"IsothermalSSACAnalysis"
],
"type": "string"
}
},
"required": [
"ssac_freqs"
],
"type": "object"
},
"IsothermalSteadyChargeDCAnalysis": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -6564,6 +6635,84 @@
],
"type": "object"
},
"SSACAnalysis": {
"additionalProperties": false,
"properties": {
"attrs": {
"default": {},
"type": "object"
},
"convergence_dv": {
"default": 1.0,
"exclusiveMinimum": 0,
"type": "number"
},
"fermi_dirac": {
"default": false,
"type": "boolean"
},
"ssac_freqs": {
"type": "ArrayLike"
},
"tolerance_settings": {
"allOf": [
{
"$ref": "#/definitions/ChargeToleranceSpec"
}
],
"default": {
"abs_tol": 10000000000.0,
"attrs": {},
"max_iters": 30,
"ramp_up_iters": 1,
"rel_tol": 1e-10,
"type": "ChargeToleranceSpec"
}
},
"type": {
"default": "SSACAnalysis",
"enum": [
"SSACAnalysis"
],
"type": "string"
}
},
"required": [
"ssac_freqs"
],
"type": "object"
},
"SSACVoltageSource": {
"additionalProperties": false,
"properties": {
"amplitude": {
"default": 1.0,
"type": "number"
},
"attrs": {
"default": {},
"type": "object"
},
"name": {
"minLength": 1,
"type": "string"
},
"type": {
"default": "SSACVoltageSource",
"enum": [
"SSACVoltageSource"
],
"type": "string"
},
"voltage": {
"type": "ArrayLike"
}
},
"required": [
"voltage"
],
"type": "object"
},
"Sellmeier": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -9454,9 +9603,15 @@
"type": "object"
},
"source": {
"allOf": [
"anyOf": [
{
"$ref": "#/definitions/DCVoltageSource"
},
{
"$ref": "#/definitions/GroundVoltageSource"
},
{
"$ref": "#/definitions/SSACVoltageSource"
}
]
},
Expand All @@ -9477,9 +9632,15 @@
"properties": {
"analysis_spec": {
"anyOf": [
{
"$ref": "#/definitions/IsothermalSSACAnalysis"
},
{
"$ref": "#/definitions/IsothermalSteadyChargeDCAnalysis"
},
{
"$ref": "#/definitions/SSACAnalysis"
},
{
"$ref": "#/definitions/SteadyChargeDCAnalysis"
},
Expand Down
Loading
Loading