Skip to content

Commit d1727c9

Browse files
committed
Remove quickstart from batt overview
1 parent 9af6694 commit d1727c9

1 file changed

Lines changed: 2 additions & 25 deletions

File tree

src/lib/config/packages.ts

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -211,34 +211,11 @@ scope.plot()`,
211211
installation: [
212212
{ name: 'pip', command: 'pip install pathsim-batt' }
213213
],
214-
quickstart: {
215-
description: 'PathSim-Batt cell blocks plug into PathSim simulations. Drive the cell with a current source and observe terminal voltage.',
216-
code: `from pathsim import Simulation, Connection
217-
from pathsim.blocks import Source, Scope
218-
from pathsim_batt import CellElectrothermal
219-
220-
# Default Chen2020 parameter set, SPMe model
221-
cell = CellElectrothermal(initial_soc=0.8)
222-
223-
# Constant 2 A discharge
224-
i_src = Source(func=lambda t: 2.0)
225-
scope = Scope()
226-
227-
sim = Simulation(
228-
[i_src, cell, scope],
229-
[Connection(i_src, cell), Connection(cell, scope)]
230-
)
231-
sim.run(1800)
232-
scope.plot()`,
233-
title: 'Example'
234-
},
214+
quickstart: null,
235215
apiModules: [
236216
{ name: 'pathsim_batt', description: 'Cell blocks (CellElectrothermal, CellElectrical, LumpedThermal)' }
237217
],
238-
pyodidePackages: [
239-
{ pip: 'pathsim', import: 'pathsim', pre: true },
240-
{ pip: 'pathsim-batt', import: 'pathsim_batt', pre: true }
241-
]
218+
pyodidePackages: []
242219
},
243220
vehicle: {
244221
id: 'vehicle',

0 commit comments

Comments
 (0)