Difference between revisions of "Kicad"
From Tech
Jump to navigationJump to search| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | =Notes= |
||
| + | For transmission line simulation, use 'TLINE' with simulation model -> Built-in SPICE model -> Device=Transmission line, |
||
| + | * Device type=RLGC |
||
| + | * C/length=100e-12 |
||
| + | * L/length=250e-9 |
||
| + | * R/length=0.1 (eg) |
||
| + | |||
| + | |||
| + | |||
=Compiling Kicad= |
=Compiling Kicad= |
||
To compile latest (2018-05-20) git version of kicad after a clean install of ubuntu 18.04: |
To compile latest (2018-05-20) git version of kicad after a clean install of ubuntu 18.04: |
||
| Line 4: | Line 13: | ||
apt update |
apt update |
||
apt build-dep kicad |
apt build-dep kicad |
||
| − | apt install openssh-server git bison flex libglm-dev liboce-foundation-dev |
+ | apt install openssh-server git bison flex libglm-dev liboce-foundation-dev liboce-ocaf-dev libboost-test-dev |
git clone https://git.launchpad.net/kicad |
git clone https://git.launchpad.net/kicad |
||
| Line 15: | Line 24: | ||
cmake .. |
cmake .. |
||
make |
make |
||
| + | |||
| + | |||
| + | warning: |
||
| + | CMake Warning at CMakeLists.txt:573 (message): |
||
| + | wxWidgets library has been built against GTK3, it causes a lot of problems in KiCad |
||
| + | ==On upgraded older ubuntu== |
||
| + | Do the following before compiling kicad v5 (?): |
||
| + | apt remove libwxgtk3.0-0v5 |
||
Latest revision as of 13:18, 7 February 2025
Notes
For transmission line simulation, use 'TLINE' with simulation model -> Built-in SPICE model -> Device=Transmission line,
- Device type=RLGC
- C/length=100e-12
- L/length=250e-9
- R/length=0.1 (eg)
Compiling Kicad
To compile latest (2018-05-20) git version of kicad after a clean install of ubuntu 18.04:
- enable the source lines in /etc/apt/sources.lst
apt update apt build-dep kicad apt install openssh-server git bison flex libglm-dev liboce-foundation-dev liboce-ocaf-dev libboost-test-dev
git clone https://git.launchpad.net/kicad cd kicad cd scripts ./get_libngspice_so.sh sudo ./get_libngspice_so.sh install cd .. mkdir build cmake .. make
warning:
CMake Warning at CMakeLists.txt:573 (message): wxWidgets library has been built against GTK3, it causes a lot of problems in KiCad
On upgraded older ubuntu
Do the following before compiling kicad v5 (?):
apt remove libwxgtk3.0-0v5