Limit range on 3D dial guage

Hi,
i am using 3D Dial gauge. I am trying to show the number of deviations per batch in gauge.for example  less than 20 as green, 20 - 40 as yellow and rest as red.
In the SVG Element properties, i can see the red arc , green arc and yellow arc but how to limit the range is not clear to me.
Any idea will be a great help
Thanks

I was specifically referring to using the AnimationRenderer action block in the BLT. Prior to using this action block (and setting the Max Limit and Low Limit Properties there), you can use an assignment action block to do your logic. Or you can do your logic within the assignment of the properties.
The AnimationRenderer asks for you to configure the object and specify which Animated Object to use.Then you can configure the links --- this is where you can set your Max and Low Limits.
Then after the AnimationRenderer, you need to use the Image Saver action block within the Web section to save the SVG file
Of course if you wanted to hard code the max and low limits, you could open up your SVG within Dynamic Graphics. Then go to Object Properties and Edit your Max and Low Limit properties this way.

Similar Messages

  • Color range on 3D dial guage

    Hi,
    I am using 3D Dial gauge. I am trying to set the limits for red, yellow and green arcs.
    My requirement is to set the arcs as  0 to 85 : Red, 85 to 95 :Yellow, 95 to 100: Green with the Min range and Max range as 0-100.
    In the SVG Element properties, i can see the red arc , green arc and yellow arc but how to limit the range is not clear to me.
    Any idea will be a great help
    Thanks
    Shipra
    M-9886452721

    Hi Shipra,
    I think this thread will help you out.
    Re: Changing the limits on 3D Dial Guage
    Also, any changes you wish to make in your SVG, you can use Inkscape. Its a free and readily available tool and easy to understand and use.
    Check out these links too:
    Re: SVG PIE Chart - Limits
    Re: Half Gauge SVG - Change Coloured arcs
    Re: Limits on 3D dial gauge
    All the best.
    Regards,
    Gita K C.

  • Changing the limits on 3D Dial Guage

    Hi,
    I am trying to limit the Red,Green & Yellow arc lengths on the 3d Dial Guage. For E.g. i want to show 0-30 as red, 30-50 as yellow & the rest as green. I am able to rotate the arcs using "transform" property of the respective arcs.
    I found few threads on sdn which says it can be done using SVG Object properties instead of using the "transform" property.
    Can you pls. tell me exactly how using the SVG Object properties we can limit the low & high values of each of the arc's?
    Regards,
    Sushma.

    Hi Sushma,
    I had a similar requirement long back and I got the solution by playing with it. Please try the below.
    Define Object Properties (of type Number):
       HighLimit
       LowLimit
       MaxRange
       MinRange
    In your case, set HighLimit to 50 and LowLimit to 30 . Set MinRange and MaxRange as per your requirements (for example: 0 and 100)
    Set Animation Links as follows (click Assign Link to set this value): 
    YellowArc: d
    "M107.59 266.52  A 124,124 0 "  & if( ((HighLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    RedArc: d
    "M107.59 266.52  A 124,124 0 "  & if( ((LowLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    Thanks,
    John

  • 3D Dial Guage not showing up

    Hi All,
    After the upgrade of MII from 12.1 to 14,  I am unable to see the animated object. It displays nothing on click of the 3D Dial guage object in the Default folder of workbench.
    All other objects like Alerter,LED meter etc are displaying, except the Half guage, 3D guage.
    Do I need to upgrade on patch?
    Note: Current MII version is 14, SP4 and Patch 5.
    Thanks,
    Padma Rao

    Hi,
    So you downloaded the Materials.zxp and used Extension Manager to install?
    Do you have any of the .p3m files here:
    Users/user/Library/Application Support/Adobe/Adobe Photoshop CS5/Presets/Materials
    or /Applications/Adobe Photoshop CS5/Presets/Materials
    If not, that's where they should be. We've seen the Extension Manager installation have various problems including silent failures. You can change the Materials.zxp extesion to .zip and then unzip to find the individual material files. Copy them manually over to the user directory.
    Now launch Ps and with a 3D layer selected and an existing material targeted, click the material picker icon and then go to the upper right flyout. From this menu you should be able to replace/append the previewed material samples. Hopefully this screen shot illustrates this OK.
    regards,
    steve

  • Indicator on 3D dial guage

    HI ,
    I am using 3D Dial gauge.
    My requirement is to set the arcs as 0 to 85 : Red, 85 to 95 :Yellow, 95 to 100: Green with the Min range and Max range as 0-100,and I also need to change the indicator color and  postion /direction based on needle postion .
    For example :
    KPI Vlaue : 70
    HighLimit:95
    LowLimit: 85
    MaxRange: 100
    MinRange: 0
    So I Limit the arc range based on given formula :
    YellowArc: d
    "M107.59 266.52 A 124,124 0 " & if( ((HighLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    RedArc: d
    "M107.59 266.52 A 124,124 0 " & if( ((LowLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    Needle is pointion to 70 becuase KPI value is : 70
    I am also able to change the indictor color based on needle position
    if needle is in Red Range the indicator  color is : "RED"
    if needle is in Yellow Range the indicator  color is : "Yellow"
    if needle is in Green Range the indicator  color is : "Green"
    Now I have to change the direction of indicator but how I do not know
    if indicator color is "RED"  it should be "Down"
    if indicator color is "Green"  it should be "UP"
    if indicator color is "Yellow"  it should be "Left"
    Any idea will be a great help
    Regards
    Shipra

    Hi Shipra,
    You will need an SVG editor to make the modifications to the underlying SVG object.  There are several of them available, but the one I always have used in the past is a freeware download from Inkscape.  There are several threads on this forum which refer to SVGs and I recommend searching back through all years to get some suggestions or ideas.
    Regards,
    Mike

  • Multiple input limit range from multiple channels

    Hallo I´m kinda new to LabView and need some information,
    I use a Multifunction DAQ 16 Bit with the following specifications:
    1. M-Series
    2. NI PCI 6250
    3. Operated by Microsoft XP
    My problem:
    * I would like to use 4 analog input channels from my M-Device to measure 4 diffrenttypes of voltage. The resolution from each channels varying from +/-10, +/-5, +/-1, etc (those are the possible range if i dont misunderstood the Data sheet from NI). I have tried to use a daqmx create task in a For-Loop so that vi runs only 1 input limit for 4 times and then put all the signals in the daqmx create channels.
    The vi does execute the measurement but I dont get the right scale that I want.
    Thanx for the info
    Message Edited by Piiwee on 11-29-2005 08:40 AM

    Hi Piiwee,
    You are doing just great with your English.
    I got an idea as to what your problem is.
    Just Have a look at attached VI.
    it should solve your problem.
    I have used chart instead of graph
    I have stacked the 4 plots one over other and auto scaled each(  you can also set scale of each graph by going to properties)
    Hope this helps
    Regards
    Dev
    Attachments:
    DAQ channel acq_chart.vi ‏85 KB

  • 3D Dial Guage

    Hi Forum,
    Can anyone tell me how to change the limit of the arcs in the 3d Dial Gauge. I am able to change the color of the arc by changing "stroke" property. But i couldn't find any property to change the limit of the arcs.
    Also, i am able to put a value in the value box. But the needle is not moving according to the value that is assigned to value box.
    Thanks a lot,
    Regards
    Mike.

    Hi Michael,
    have you done the advanced training course yet?  Doing dynamic graphics is well explained in one of the labs.  If you search for "Dynamic Graphics" in the index of the help files, there's a good walk through there too.
    The rotation of the needle is calculated using a animation link.  The link you'd use is:
    SVG Element: Needle\Transform
    And the Expression would be something along the lines of:
    "rotate(" & (20 + 320 *  (Value - MinRange) / (MaxRange - MinRange))  & " 150 150)"
    Where Value, MinRange, etc... are Object Properties which you would've already defined and rotate is the functon on the angle calculated.  If you wanted to, you could also use the "Calculated Properties" to do the calculation instead of doing it directly in the animation link.
    I'm not too sure I understand what you're trying to do with the limit.  Is it the text value you're wanting to change, or the angle at which the limit sits?
    Regards,
    Lawrence
    Edited by: Lawrence Prinsloo on Jan 8, 2008 1:53 PM

  • Limit range of chart value axis

    I'm sure this is blindingly obvious, but I can't figure it out. I have a simple line chart (graphing dollar values), and I want to limit the range of the value axis. Specifically, I want to raise the minimum value displayed to somewhere near the smallest data value, so that my curve isn't flat across the top of the graph. If I enter a number into the Minimum field under Value Axis Format in the Inspector, the vertical axis labels all collapse to the bottom of the chart.
    I can't imagine that what I'm trying to do is at all uncommon - how could it possibly be this hard?
    Thanks,
    Aaron

    Aaron,
    Well, I have to say that what you show is exactly as you described. I've never seen that and have no idea what might cause it. I can only offer a few bits of general advice. Run software update and make sure you have the latest update for Numbers 08, Restart your computer, try to duplicate the problem in an fresh Numbers document. If a fresh document works properly, copy your content over, keeping track of your additions so you can try to identify the content that causes the problem should it reappear.
    Jerry

  • Limit ranges on Web Dynpro Business Graphics

    I am implementing a "speedometer" graphic in Web Dynpro (using the Business Graphic control).  Does anyone know how to set it so that it would always show the same max and min values regardless of the data passed in.  (i.e. if my data is 20, 30, and 40, the total range displayed might be from 10 to 50.  What if I want it to always show 0 to 100?)

    Never mind.  Found the answer.
    In the Chart Designer, go to Axis, set the Minimum and Maximum values and de-select "Minimum Automatic" and "Maximum Automatic."

  • Speedgrade: protune to 709.cube limit range of files

    Forgive me I don't know a whole lot about color correction or speed grade as a whole so it will be difficult for me to communicate what I am having an issue with. I recently recorded multiple clips with a GoPro in 4K. I put all the clips on the same time one in premiere Pro and exported them to speed grade.
    for some of the clips when I apply a look up table such as pro tune to 709.cube it works fine.
    however on others when I apply the same look up table it limits the amount I am able to adjust the clip. For example on the RGB parade it only goes to maximum of 70 on one clip and 50 on another.
    then on some of the other clips it allows me to do a full range of adjustments and it goes all the way to 100. All these clips recorded the same way and with the same settings so I don't know what the difference would be. I've done nothing but import them and then send them to speedgrade.
    I cannot figure this out if anybody can please help me I would greatly appreciate it I don't even know the correct terms to search for Google.

    In order to get there and NOW I've started doing a couple things that aren't 'typical' procedure especially when in run & gun mode. Such as put an Expodisc in front of the lens and film a couple seconds while having it pointed sort-of towards the light falling on the area to be shot at least a few times during an event. Yes, I will completely balance to that to start with and if I've got the time may do so later during the event also. But I will just hold it in front of the lens for a second or two (again, quick pointing semi-towards lightsources) every so often, and with that set for middle value on the camera I can then get a pretty decent neutral grade very fast in post.
    On loading the items onto my timeline, I'll put things together as they fit ... but before sending over to Sg to grade, with the PrPro bin set for name sort (I don't tend to rename footage) I'll maybe insert a couple of the short gray sections in their appropriate spots in the sequence, use them in Sg to get a quick neutral grade and copy that to the following clips, then color/style those clips. Back in PrPro I'll delete the gray sections. Takes a few seconds to add them, a few seconds to delete them, and saves a LOT of seconds getting to neutral. (Note ... testing your camera by doing a couple seconds at "normal" exposure, then a couple seconds each 2 or three stops under/over isn't a bad idea. If the gray of your shadows always goes a hint of green, but your upper tones go a bit cyan from the middle tones, then you know something to correct or build a Look for that camera.)
    The two biggest things I learned to start with grading: 1) TRUST YOUR SCOPES NOT YOUR EYES! and 2) don't confuse neutralization and final coloring!
    Waveform gives you a great look at your tonality ... use it to set your bottom & top values. Parade is great for neutralization especially combined with Vectorscope ... watch the three colors in the Parade, and look to the center of the vectorscope ... if there's any significant area that is totally gray/white/black it should align with the center of that scope ... color saturation is higher to the edges, less towards the middle ... and NO color at dead center. If you've got some decent total neutrals no matter light or dark, but nothing centered on the vectorscope, well .. you adjust until that is centered. If you've got a lot of skin, there's a line that runs from the center up to the upper left oft called the "skin" line ... which it isn't but is for all practical purposes. Sometimes I'll put a hard mask on a clip so I'm only seeing someone's face and check that the color stays pretty close to that line.
    Getting a good neutral gets you started ... but rarely is it pretty. But without neutral, it's DAMN hard to get to pretty. Go for neutral, then start trusting your eyes to go for pretty.
    Neil

  • RS232-Connection / dial guage

    Hi!
    I would like to connect a dial gauge per rs232 to labview7.1. But it doesn´t work. The manual says, that the signal "dtr" has to be low for 140ms. then the data will be automatically sent by the equipment. But how can i program the dtr signal individually? I am programming with the visa controls. I thought that this would be the simplest way to programming rs232. is there another simple opportunity to program the rs232-dtr-signal in labview7.1?
    Thanx for all
    Timmy

    thanx a lot. but it isnt running. always i get an error while reading the visa! i attached my vi incl. the interface description. perhaps anyone can detect some missed basic details?! I am really glad about every tip i can get.
    bye timmy
    Attachments:
    rs232.zip ‏92 KB

  • Specifying max limit range in array

    Hi,
    I am stuck up with a problem . Though its trivial, i couldnt solve it. 
    Consider a 2d array which containts any random number say  0 to 1000000 written in a spreadsheet file. But i am required to extract only the values in the range 0 to 50000 , and rest of it should be replaced with zero. there can be million values in the spreadsheet file. 
    I am using labview of version 9. Any help on this is highly appreciated. 
    thanks,
    sarath

    Hi Johnsold,
    this is a part of my full scheme of code. I am attaching the VI for your reference. i have tried the solution you gave to the best of my knowledge to fit in my code but in vain. basically i am trying to read a certain section of spreadsheet file and add all those files(containing array elements) and subtracting that with another set of files. Now I need to display only a range of values from the resulting array in the intensity graph. I am also required to do certain other functions, which is irrelevant at present. 
    Right now i have appended your code and edited little, which i have attached for your reference. I couldnt attach my spreadsheet files which i use since it is 11mb each. Can you used any text file which you have and execute it.  Pls tell me where i am going wrong. Thanks for your prompt reply,.
    Labview version: 9.0
    Attachments:
    july12 MOD_CA2.vi ‏35 KB

  • Drill through in Pie Chart/Range Guage

    Hi
    I enable drill thorugh in my Pie Chart and Range Guage( Dial Guage) in the BAM reports.
    How to change the value format for the drill through fileds. IF we go to the value format the drop down for filed selection just shows the fields used to configure the Guage or pie chart and not the fileds used for drill though
    How can we change the format for the fields used for drill through
    TO reproduce
    Just take some id, process name, exceution time,status( success/failure). The dial guage shows just the execution time average.Now in drill through it has details for id. processname, started/failure. How to change the format for these fields.When u select properties and then go to value format tab and the dropdown for fields will show only execution time not status, processname or id.
    How to change the value format for these fields

    I don't think this is a bug. This happens only for the drill through reports that get created by default for a particular view. Because you are trying to look for formatting options for drill through report from the context of your main report editor, you are finding it as bug. It will be very difficult to provide all such options for DEFAULT drill through report in the context of MAIN report. I think may be we can add a line or two in our documentation to clarify this part, that should be sufficient.

  • Dial-backup - business hours limit

    Hi everybody,
    I´m working in a lab that  includes dial-backup for a VSAT link (satellite link). This part of the  lab is working excelent, dial-backup goes up when the VSAT connection is  lost, and goes down when the VSAT link is recovered.
    So, all is  ok but... I need to grant dial-backup access only in business hours (ex:  9 am to 5 pm) and deny these the rest of the day.
    I  worked with time range + access list + dial-list but it didn´t work for  me. I was following the steps of this link: http://www.cisco.com/en/US/tech/tk801/tk133/technologies_configuration_example09186a0080094089.shtml.
    Is there  other way to do this or other idea?
    Regards.

    Todd,
    Sorry for the delay but i was on vacation. At below you´ll find the configuration, specifically highlighted in red the configuration regarding to block dial-in connections. This configuration intends to permit the dial-in connections only on business hours. I know that just is blocking IP traffic but I did not find a way to block PPP or other protocol in a low level.
    Could you help me?
    Thanks in advance.
    Current configuration : 18107 bytes
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname central
    boot-start-marker
    boot-end-marker
    logging message-counter syslog
    no logging buffered
    no logging console
    enable password CVMSLoA
    aaa new-model
    aaa authentication ppp default local
    aaa authorization exec dafault local
    aaa session-id common
    memory-size iomem 30
    dot11 syslog
    ip source-route
    ip cef
    ip domain name test_dbkp
    no ipv6 cef
    multilink bundle-name authenticated
    PURPOSELY REMOVED
    username alumine password 0 alumine
    username senillosa password 0 senillosa
    interface Loopback0
    ip address 192.168.2.1 255.255.255.255
    interface FastEthernet0/0
    description to TELCO1
    ip address 10.1.176.1 255.255.255.248
    ip nbar protocol-discovery
    ip nat outside
    ip virtual-reassembly
    duplex auto
    speed auto
    analysis-module monitoring
    service-policy output CUSTOMER_QoS
    interface FastEthernet0/1
    description to TELCO2
    ip address 10.1.176.9 255.255.255.248
    duplex auto
    speed auto
    analysis-module monitoring
    interface FastEthernet0/1/0
    interface FastEthernet0/1/1
    interface FastEthernet0/1/2
    interface FastEthernet0/1/3
    interface Integrated-Service-Engine1/0
    ip unnumbered Vlan1
    ip nbar protocol-discovery
    service-module ip address 10.1.48.253 255.255.255.0
    !Application: running
    service-module ip default-gateway 10.1.48.1
    no keepalive
    interface Vlan1
    ip address 10.1.48.1 255.255.255.0
    ip flow ingress
    ip flow egress
    ip nat inside
    ip virtual-reassembly
    no autostate
    interface Async1
    no ip address
    encapsulation slip
    async mode interactive
    no peer default ip address
    interface Async0/0/0
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/1
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/2
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/3
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/4
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/5
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/6
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode interactive
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    interface Async0/0/7
    ip unnumbered Loopback0
    encapsulation ppp
    async dynamic address
    async mode dedicated
    no peer default ip address
    dialer-group 2
    ppp authentication chap
    routing dynamic
    router bgp 1
    no synchronization
    bgp log-neighbor-changes
    network 10.1.48.0 mask 255.255.255.0
    network 10.222.48.0 mask 255.255.255.0
    network 192.168.2.1 mask 255.255.255.255
    neighbor 10.1.176.25 remote-as 4
    neighbor 10.1.176.25 ebgp-multihop 255
    neighbor 10.1.176.33 remote-as 5
    neighbor 10.1.176.33 ebgp-multihop 255
    neighbor 10.1.176.41 remote-as 6
    neighbor 10.1.176.41 ebgp-multihop 255
    neighbor 10.1.176.49 remote-as 7
    neighbor 10.1.176.49 ebgp-multihop 255
    neighbor 10.1.176.57 remote-as 8
    neighbor 10.1.176.57 ebgp-multihop 255
    neighbor 10.1.176.65 remote-as 9
    neighbor 10.1.176.65 ebgp-multihop 255
    neighbor 10.1.176.73 remote-as 110
    neighbor 10.1.176.73 ebgp-multihop 255
    neighbor 10.1.176.81 remote-as 11
    neighbor 10.1.176.81 ebgp-multihop 255
    neighbor 10.1.176.89 remote-as 12
    neighbor 10.1.176.89 ebgp-multihop 255
    neighbor 10.1.176.97 remote-as 13
    neighbor 10.1.176.97 ebgp-multihop 255
    neighbor 10.1.176.105 remote-as 14
    neighbor 10.1.176.105 ebgp-multihop 255
    neighbor 10.1.176.113 remote-as 15
    neighbor 10.1.176.113 ebgp-multihop 15
    neighbor 10.1.176.121 remote-as 16
    neighbor 10.1.176.121 ebgp-multihop 255
    neighbor 10.1.176.129 remote-as 17
    neighbor 10.1.176.129 ebgp-multihop 255
    neighbor 10.1.176.137 remote-as 18
    neighbor 10.1.176.137 ebgp-multihop 255
    neighbor 10.1.176.145 remote-as 19
    neighbor 10.1.176.145 ebgp-multihop 255
    neighbor 10.1.176.153 remote-as 20
    neighbor 10.1.176.153 ebgp-multihop 255
    neighbor 10.1.176.161 remote-as 21
    neighbor 10.1.176.161 ebgp-multihop 255
    neighbor 10.1.176.169 remote-as 22
    neighbor 10.1.176.169 ebgp-multihop 255
    neighbor 10.1.176.177 remote-as 24
    neighbor 10.1.176.177 ebgp-multihop 255
    neighbor 10.1.176.185 remote-as 25
    neighbor 10.1.176.185 ebgp-multihop 255
    neighbor 10.1.176.193 remote-as 220
    neighbor 10.1.176.193 ebgp-multihop 255
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0 10.1.176.6
    ip route 10.1.48.253 255.255.255.255 Integrated-Service-Engine1/0
    ip route 10.1.176.0 255.255.255.0 10.1.176.2
    ip route 10.1.176.24 255.255.255.248 10.1.176.10
    ip route 10.1.176.40 255.255.255.248 10.1.176.10
    ip route 10.1.176.64 255.255.255.248 10.1.176.10
    ip route 10.1.176.72 255.255.255.248 10.1.176.10
    ip route 10.1.176.88 255.255.255.248 10.1.48.16
    ip route 10.1.176.152 255.255.255.248 10.1.176.10
    ip route 10.1.176.200 255.255.255.248 10.1.48.16
    ip route 10.1.176.208 255.255.255.240 10.1.48.16
    ip route 10.1.176.248 255.255.255.248 10.1.176.10
    ip route 10.2.48.0 255.255.255.0 10.1.176.2
    ip route 10.3.48.0 255.255.255.0 10.1.176.2
    PURPOSELY REMOVED
    access-list 1 permit 192.168.150.199
    access-list 1 permit 10.1.176.2
    access-list 1 permit 10.1.176.6
    access-list 1 permit 10.1.48.0 0.0.0.255
    access-list 1 permit 10.222.48.0 0.0.0.255
    access-list 101 permit ip any any time-range BUSINESS-HOURS
    access-list 101 deny ip any any
    dialer-list 2 protocol ip list 101
    snmp-server community RTPE-T-2 RO
    snmp-server community RTPE-R-2 RO
    snmp-server community RTPE-W-2 RO
    snmp-server location CCTE
    snmp-server contact AREA C+T
    snmp-server host 10.1.48.19 RTPE-T-2
    snmp-server host 10.1.48.219 RTPE-T-2
    control-plane
    voice-port 0/2/0
    voice-port 0/2/1
    voice-port 0/2/2
    voice-port 0/2/3
    dial-peer voice 1 pots
    preference 1
    destination-pattern *1
    port 0/2/0
    dial-peer voice 2 pots
    preference 2
    destination-pattern *1
    port 0/2/1
    dial-peer voice 3 pots
    preference 3
    destination-pattern *1
    port 0/2/2
    dial-peer voice 4 pots
    preference 4
    destination-pattern *1
    port 0/2/3
    dial-peer voice 5 pots
    preference 1
    destination-pattern [5-7]...
    port 0/2/0
    forward-digits all
    dial-peer voice 6 pots
    preference 2
    destination-pattern [5-7]...
    port 0/2/1
    forward-digits all
    dial-peer voice 7 pots
    preference 3
    destination-pattern [5-7]...
    port 0/2/2
    forward-digits all
    dial-peer voice 8 pots
    preference 4
    destination-pattern [5-7]...
    port 0/2/3
    forward-digits all
    dial-peer voice 9 voip
    destination-pattern 199
    session protocol sipv2
    session target ipv4:10.255.48.227
    no vad
    dial-peer voice 10 voip
    destination-pattern 101
    session protocol sipv2
    session target ipv4:10.3.48.3
    no vad
    dial-peer voice 11 voip
    destination-pattern 102
    session protocol sipv2
    session target ipv4:10.3.48.35
    no vad
    dial-peer voice 12 voip
    destination-pattern 103
    session protocol sipv2
    session target ipv4:10.3.48.67
    no vad
    dial-peer voice 13 voip
    destination-pattern 121
    session protocol sipv2
    session target ipv4:10.2.48.3
    no vad
    dial-peer voice 14 voip
    destination-pattern 122
    session protocol sipv2
    session target ipv4:10.4.48.3
    no vad
    dial-peer voice 15 voip
    destination-pattern 123
    session protocol sipv2
    session target ipv4:10.18.48.3
    no vad
    dial-peer voice 16 voip
    destination-pattern 131
    session protocol sipv2
    session target ipv4:10.12.48.3
    no vad
    dial-peer voice 17 voip
    destination-pattern 132
    session protocol sipv2
    session target ipv4:10.220.48.3
    no vad
    PURPOUSLY REMOVED
    line con 0
    line aux 0
    stopbits 1
    line 0/0/0 0/0/7
    modem InOut
    autoselect ppp
    stopbits 1
    speed 57600
    flowcontrol hardware
    line 66
    no activation-character
    no exec
    transport preferred none
    transport input all
    transport output lat pad telnet rlogin lapb-ta mop udptn v120 ssh
    line vty 0 4
    access-class 1 in
    privilege level 15
    transport input telnet ssh
    line vty 5 15
    access-class 1 in
    privilege level 15
    scheduler allocate 20000 1000
    time-range BUSINESS-HOURS
    periodic daily 09:00 to 17:00
    end

  • Output current and voltage limit

    I am currently using a PXI 4130 to output 1mA with 2V backing. I am measuring the voltage and current with a DMM and I am getting good values. I need to be able to prove that the voltage and current will not largely exceed 1mA or 2V so that it will not damage any components. Looking at the code I used it says that voltage level range is 6 and current limit range is 20 and I am not sure what that means exactly. What precautions/values can I change to make sure these values never get exceeded
    Thanks
    Attachments:
    NI-DCPower Source DC Voltage.vi ‏48 KB

    Hello lvuser,
    In you code you are also measuring the voltage and current back into your program. You can make programmatic decisions based on these measurements, for example, stopping the program based off of a voltage that floats too high. Our devices make sure to try to maintain the voltages and currents you tell them by completing a closed loop system with measurements taken on the same inputs that are sourcing. Try taking the readings you get in your program and using some threshold to trigger a case statement that holds a function to close the resource and turn off the generation.
    Regards,
    -Travis E
    National Instruments
    Applications Engineer

Maybe you are looking for

  • The installation package could not be opened. Verify that the package exist

    HELP! I have not been able to update my Itunes to a newer version (since 6.0.5). Every time I try to upgrade to the newer version I get this error message when I try to install: "The installation package could not be opened. Verify that the package e

  • SQL SERVER SECURITY Update KB2977321 and KB2716436 Error Code 1642

    I had gone through some of the related question that has been shared over here but since for me there was a definite Error Pop up stating SQL SERVER SET UP FAILER "NT Service Unable to start MSSQLSERVER" but i noticed that after each of the update th

  • QFS in non global zones

    Hi, We are planning to configure QFS from a T3-2 to at least 2 non global zones. At the moment the data is shared over NFS but it has been decided to install and configure QFS for speed and resilience. Reading numerous documents I am unable to find a

  • How do Install and make FFmpeg work with Video DownloadHelper?

    I use FireFox v.29 in Windows XP; I installed Video DownloadHelper. I want to convert the videos as soon as I download them. In the preferences of the extension there's a box that says "enable conversion". As I check that box I'm asked to install an

  • Bill from CMR for new drop wire

    Hello, I recently received a bill in the mail from CMR claims for nearly $300 for a new drop line. I called 811 and had all lines marked prior to digging a posthole, however the fios line was not marked and unfortunately the line was cut about 8 inch