LT Spice IV

Informations

Créateur Messages
jbrazio Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 5261
Wine: System

Retours d'expérience

Description

LTspice IV is a high performance SPICE simulator, schematic capture and waveform viewer with enhancements and models for easing the simulation of switching regulators.  Our enhancements to SPICE have made simulating switching regulators extremely fast compared to normal SPICE simulators, allowing the user to view waveforms for most switching regulators in just a few minutes. Included in this download are LTspice IV, Macro Models for 80% of Linear Technology's switching regulators, over 200 op amp models, as well as resistors, transistors and MOSFET models. 

Captures d'écran

Miniature

Code source

#!/bin/bash
# Date : (2015-04-06 13-43)
# Last revision : (2015-04-06 13-43)
# Wine version used : 1.6.2
# Distribution used to test : Ubuntu 14.04 LTS
# Author : João Brázio <joao@brazio.org>
# URL : https://github.com/jbrazio/miscellaneous/tree/master/pol/ltspice
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "${PLAYONLINUX}/lib/sources"
 
TITLE="LT Spice IV"
PREFIX="LTSpiceIV"
INSTALLER_DOWNLOAD="http://ltspice.linear-tech.com/software/LTspiceIV.exe"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "${TITLE}" "Linear Technology" "http://www.linear.com/designtools/software/" "João Brázio <joao@brazio.org>" "${PREFIX}"
 
POL_Wine_SelectPrefix "${PREFIX}"
if [ "$(POL_Wine_PrefixExists "${PREFIX}")" = "False" ]; then
    POL_Wine_PrefixCreate
fi
 
Set_OS "win7"
POL_System_SetArch "x86"
 
POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB
 
POL_System_TmpCreate "${PREFIX}"
cd "${POL_System_TmpDir}"
 
POL_Download "${INSTALLER_DOWNLOAD}"
POL_SetupWindow_wait "$(eval_gettext 'IInstallation in progress.')" "$TITLE"
POL_Wine start /unix "${POL_System_TmpDir}/LTspiceIV.exe"
POL_Wine_WaitExit "${TITLE}"
 
POL_Shortcut "scad3.exe" "$TITLE" "" "" "Development;Engineering;Electronics;"
POL_Extension_Write asc "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'Installation finished.')" "$TITLE"
 
[ -d "${POL_System_TmpDir}" ] && POL_System_TmpDelete
POL_SetupWindow_Close
 
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 10 Mai 2019 à 23:05
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Messages

Copied 2015 script in the right place.

Differences

@@ -0,0 +1,48 @@
+#!/bin/bash
+# Date : (2015-04-06 13-43)
+# Last revision : (2015-04-06 13-43)
+# Wine version used : 1.6.2
+# Distribution used to test : Ubuntu 14.04 LTS
+# Author : João Brázio <joao@brazio.org>
+# URL : https://github.com/jbrazio/miscellaneous/tree/master/pol/ltspice
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "${PLAYONLINUX}/lib/sources"
+ 
+TITLE="LT Spice IV"
+PREFIX="LTSpiceIV"
+INSTALLER_DOWNLOAD="http://ltspice.linear-tech.com/software/LTspiceIV.exe"
+ 
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "${TITLE}" "Linear Technology" "http://www.linear.com/designtools/software/" "João Brázio <joao@brazio.org>" "${PREFIX}"
+ 
+POL_Wine_SelectPrefix "${PREFIX}"
+if [ "$(POL_Wine_PrefixExists "${PREFIX}")" = "False" ]; then
+    POL_Wine_PrefixCreate
+fi
+ 
+Set_OS "win7"
+POL_System_SetArch "x86"
+ 
+POL_Wine_InstallFonts
+POL_Call POL_Function_FontsSmoothRGB
+ 
+POL_System_TmpCreate "${PREFIX}"
+cd "${POL_System_TmpDir}"
+ 
+POL_Download "${INSTALLER_DOWNLOAD}"
+POL_SetupWindow_wait "$(eval_gettext 'IInstallation in progress.')" "$TITLE"
+POL_Wine start /unix "${POL_System_TmpDir}/LTspiceIV.exe"
+POL_Wine_WaitExit "${TITLE}"
+ 
+POL_Shortcut "scad3.exe" "$TITLE" "" "" "Development;Engineering;Electronics;"
+POL_Extension_Write asc "$TITLE"
+ 
+POL_SetupWindow_message "$(eval_gettext 'Installation finished.')" "$TITLE"
+ 
+[ -d "${POL_System_TmpDir}" ] && POL_System_TmpDelete
+POL_SetupWindow_Close
+ 
+exit
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2015-04-06 13-43)
# Last revision : (2015-04-06 13-43)
# Wine version used : 1.6.2
# Distribution used to test : Ubuntu 14.04 LTS
# Author : João Brázio <joao@brazio.org>
# URL : https://github.com/jbrazio/miscellaneous/tree/master/pol/ltspice
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "${PLAYONLINUX}/lib/sources"
 
TITLE="LT Spice IV"
PREFIX="LTSpiceIV"
INSTALLER_DOWNLOAD="http://ltspice.linear-tech.com/software/LTspiceIV.exe"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "${TITLE}" "Linear Technology" "http://www.linear.com/designtools/software/" "João Brázio <joao@brazio.org>" "${PREFIX}"
 
POL_Wine_SelectPrefix "${PREFIX}"
if [ "$(POL_Wine_PrefixExists "${PREFIX}")" = "False" ]; then
    POL_Wine_PrefixCreate
fi
 
Set_OS "win7"
POL_System_SetArch "x86"
 
POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB
 
POL_System_TmpCreate "${PREFIX}"
cd "${POL_System_TmpDir}"
 
POL_Download "${INSTALLER_DOWNLOAD}"
POL_SetupWindow_wait "$(eval_gettext 'IInstallation in progress.')" "$TITLE"
POL_Wine start /unix "${POL_System_TmpDir}/LTspiceIV.exe"
POL_Wine_WaitExit "${TITLE}"
 
POL_Shortcut "scad3.exe" "$TITLE" "" "" "Development;Engineering;Electronics;"
POL_Extension_Write asc "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'Installation finished.')" "$TITLE"
 
[ -d "${POL_System_TmpDir}" ] && POL_System_TmpDelete
POL_SetupWindow_Close
 
exit

Réponses

Vendredi 3 Janvier 2020 à 0:33
Script approved.
Anonymous
Mercredi 26 Février 2020 à 18:56
working great on linux mint 18.3, thx a lot
jbrazio Mardi 7 Avril 2015 à 22:03
jbrazio Anonymous

Messages

I didn't understand where should I have posted the code..

Here is the link to the code, screenshots and icons.

Here is the link to the forum post.

Réponses

Mardi 7 Avril 2015 à 23:55
http://wiki.playonlinux.com/index.php/How_to_Contribute_a_Script#What_to_do_after_you_have_tested_your_script