circuit-design
- Repo stars 0
- Author repo AGI_engineering_forge
Circuit Design Tool
Built-in Functions
parallel(*resistances)— Parallel resistance combinationvoltage_divider(vin, r1, r2)— Output voltagerc_cutoff(r, c)— RC low-pass cutoff frequencypower_dissipation(v, i=None, r=None)— P = VI or V²/R
Usage
python3 /workspace/bridge.py circuit_analysis '
vin = 5.0
r1, r2 = 10e3, 22e3
vout = voltage_divider(vin, r1, r2)
f_c = rc_cutoff(10e3, 100e-9)
print(f"Voltage divider: {vin}V -> {vout:.3f}V")
print(f"RC cutoff: {f_c:.1f} Hz")
print(f"Power in R1: {power_dissipation(vin-vout, r=r1)*1000:.2f} mW")
'
For SPICE simulation:
python3 /workspace/bridge.py spice_simulation 'YOUR SPICE NETLIST'
Always specify real component values with tolerances and package sizes.
- Fluxly category
- Design
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @00000star · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Built-in Functions
parallel(resistances) — Parallel resistance combination voltagedivider(vin, r1, r2) — Output voltage rccutoff(r, c) — RC low-pass cutoff frequency
Usage
For SPICE simulation: Always specify real component values with tolerances and package sizes.
# Circuit Design Tool
## Built-in Functions
- `parallel(*resistances)` — Parallel resistance combination
- `voltage_divider(vin, r1, r2)` — Output voltage
- `rc_cutoff(r, c)` — RC low-pass cutoff frequency
- `power_dissipation(v, i=None, r=None)` — P = VI or V²/R
## Usage
```bash
python3 /workspace/bridge.py circuit_analysis '
vin = 5.0
r1, r2 = 10e3, 22e3
vout = voltage_divider(vin, r1, r2)
f_c = rc_cutoff(10e3, 100e-9)
print(f"Voltage divider: {vin}V -> {vout:.3f}V")
print(f"RC cutoff: {f_c:.1f} Hz")
print(f"Power in R1: {power_dissipation(vin-vout, r=r1)*1000:.2f} mW")
'
```
For SPICE simulation:
```bash
python3 /workspace/bridge.py spice_simulation 'YOUR SPICE NETLIST'
```
Always specify real component values with tolerances and package sizes. Evidence boundary and execution chain
Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Built-in Functions → Usage
terms -> Always specify real component values with tolerances and package sizes.
files/cmd -> parallel(resistances) · voltagedivider(vin, r1, r2) · rccutoff(r, c) · powerdissipation(v, i=None, r=None)
body sha256 -> a476d325d711
Decide Fit First
Design Intent
How To Use It
Boundaries And Review