Go Back   Wiremod Forums > Wiremod Skills > Wiremod Tutorials

Wiremod Tutorials Post your wiremod tutorials/guides here.

Reply
 
LinkBack Thread Tools Display Modes
Old 10-15-2008   #11 (permalink)
Newbie
 
Caffeinated Sentry Gnome's Avatar
 

Join Date: Oct 2008
Posts: 4
Caffeinated Sentry Gnome is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

ooohhhh more ways
Caffeinated Sentry Gnome is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 10-15-2008   #12 (permalink)
Advanced Member
 
Magos Mechanicus's Avatar
 

Join Date: May 2008
Posts: 136
Magos Mechanicus is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

Yeah, possible solutions is something you'll rarely want for with Wiremod, but there's something to be said for the simplest. Which in this case I guess would be the SR latch. Knew that thing had to have a use somewhere.
__________________
Sometimes, exhausted
with toil and endeavour,
I wish I could sleep
for ever and ever;
but then this reflection
my longing allays:
I shall be doing it
one of these days.
-Piet Hein
Magos Mechanicus is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-15-2008   #13 (permalink)
Wire Guru
 
chinoto's Avatar
 

Join Date: Apr 2008
Posts: 420
chinoto is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

And heres the one I use. Inputs ending with C is current amount of resource and M is maximum of that resource. A is Air, C is Coolant, E is Energy, F is Fusion Reactor (connect coolant first or you might blow it up), R1 is Extra Resource 1, R2 is Extra Resource 2.
Code:
N@Life Support Switch
I@AC AM CC CM EC EM R1C R1M R2C R2M
O@AO CO EO FO R1O R2O
interval(500)
AP = AC / AM, CP = CC / CM, EP = EC / EM, R1P = R1C / R1M, R2P = R2C / R2M
EP < 0.75 -> FO = 1;
EP > 0.99 -> FO = 0;
(AP < 0.75) & (EP > 0.1) -> AO = 1;
(AP > 0.99) | (EP < 0.1) -> AO = 0;
(CP < 0.75) & (EP > 0.1) -> CO = 1;
(CP > 0.99) | (EP < 0.1) -> CO = 0;
EO = EP > 0.2
(R1P < 0.75) & (EP > 0.1) -> R1O = 1;
(R1P > 0.99) | (EP < 0.1) -> R1O = 0;
(R2P < 0.75) & (EP > 0.1) -> R2O = 1;
(R2P > 0.99) | (EP < 0.1) -> R2O = 0;
Is there a way too tell if the fusion reactors are about to blow up?
__________________

(\__/) Wiremod Chinoto's Tutorials and Tutoring (Go here for "in-person" tutoring)
(='.'=) ABX Chinoto's Wire Tutorials (Text tutorials so far)
(")_(")<- Put this bunny in your sig and help him to rule the world. (My first internet infection)

Last edited by chinoto; 10-15-2008 at 06:08 PM..
chinoto is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-23-2008   #14 (permalink)
Newbie
 
Wflagg's Avatar
 

Join Date: Jun 2008
Posts: 12
Wflagg is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

i have an expression that does this for 3 resources. you input their total/max. it will turn on the devices when it drops below 90% and turn them off at 99% full.

it outputs the %of the resources, weather or not your device should be on, and the total usage of resources (IE. if your gaining or loosing, and how much)

Mine is similar to chinoto except that it also outputs the % and the usage, rather then having to add extra chips for it.

Ill edit this post with it when i get home.

Quote:
Is there a way too tell if the fusion reactors are about to blow up?
you could use an armor/health sensor if CDS is installed, however its useless to turn OFF the reactor, as they can still blow if you dont have a way to vent the energy to below 100k.
Wflagg is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-23-2008   #15 (permalink)
Member
 
jayg20769's Avatar
 

Join Date: Jun 2008
Posts: 62
jayg20769 is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

Is this "Fortex Hotel" Wulfie?
jayg20769 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-20-2008   #16 (permalink)
Newbie
 
NEMESiS's Avatar
 

Join Date: Oct 2008
Posts: 19
NEMESiS is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

Hi I'm new here (and my english sucks) can someone please make the using E-gate 2 just for Air, Coolant and Energy?

I would like to make some percent hud indicators so could that be added in the E-gate, I'm tired of having to use 6 chips for that.

If it can use wirelink, that would be good cause that means 6 less wires on the resource caches.

Please, someone read my post and help me I'm new with wire


EDITED FOR CONTENT AND SANITY
By -=Fox=-
(Please, use coherent english with actual words, or nobody will pay attention to you. Also This belongs in the HELP and SUPPORT thread of the forum.)

Last edited by -=Fox=-; 11-20-2008 at 05:48 PM..
NEMESiS is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-21-2008   #17 (permalink)
Wire Guru
 
chinoto's Avatar
 

Join Date: Apr 2008
Posts: 420
chinoto is on a distinguished road
Default Re: [REQ] A Automated Systems controller [Read post =.=]

Remade for E2 without extra resources
Code:
@name Life Support Switch
@inputs AC AM CC CM EC EM
@outputs AO CO EO
@persist AO CO
interval(500)
AP=AC/AM,CP=CC/CM,EP=EC/EM
if ((AP<0.75)&(EP>0.1)) {AO=1}
if ((AP>0.99)|(EP<0.1)) {AO=0}
if ((CP<0.75)&(EP>0.1)) {CO=1}
if ((CP>0.99)|(EP<0.1)) {CO=0}
EO=EP>0.2
A is for Air, C is for Coolant, E is for energy.
Variables ending with C are current amount of resource.
Variables ending with M are max amount of resource.
Variables ending with O are for turning on generators that make that resource. (EO is for turning on anything else that uses energy)
__________________

(\__/) Wiremod Chinoto's Tutorials and Tutoring (Go here for "in-person" tutoring)
(='.'=) ABX Chinoto's Wire Tutorials (Text tutorials so far)
(")_(")<- Put this bunny in your sig and help him to rule the world. (My first internet infection)

Last edited by chinoto; 11-21-2008 at 11:12 AM..
chinoto is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -7. The time now is 10:28 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.

Page top