answersLogoWhite

0


Best Answer

You will have to consult the manufacturer. A cast iron or steel globe valve could be trimmed (disc and seat) with bronze, iron, steel, stainless steel stellite, ceramic, rubber, neoprene, viton....or any series of different trims. The manufacturer usually determines trims by code numbers. Kinka valves indicates that this trim material on their valves is 304 stainless steel (13% chromium, and nickel content).

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of f6 trim in globe valve?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Descibe 8085 interfacing of stepper motor to rotate it through 90 degree using 8255?

Unipolar full step Stepper motor: _ _ INPUT SEQUENCE: X Y X Y 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 1 8255 CONTROL WORD: 1 0 0 0 0 0 0 0 =80H PROGRAM: MVI A, 80 OUT port B START MVI A, FC OUT port A CALL DELAY MVI A, F6 OUT port A CALL DELAY MVI A, F3 OUT port A CALL DELAY MVI A, F9 OUT port A JMP START DELAY LXI D, 0003 CALL DELAY RET


How do you write an algorithm for fibonic number?

In a Fibonacci sequence, the previous two numbers are added to generate the next Fibonacci number. F1=1st number F2=2nd number F3=f1+f2=1+2=3 F4=f2+f3=2+3=5 F5=f3+f4=3+5=8, and so on. f1 f2 f3 f4 f5 f6 f7.............. 1 2 3 5 8 13 21............. In algorithm: 1. Assign sum=0, A=0, B=1, i=1 2. Get the no. of terms upto which u want to generate the Fibonacci no, i.e., n. 3.Add A and B to get the next Fibonacci number 4. Assign the value of B to A i.e. A=B 5. Assign the value of sum to B i.e. B=sum 6. Write the value of su to get next Fibonacci number in the series. 7. increment i with 1 i.e. i=i+1 and repeat step 3,4,5,6 with the last value of i=n(n is the no. of terms which u wnt to generate Fibonacci no. series.) 8. Stop


How do you Convert the hexadecimal number A5 to a decimal number?

D: 0-15 X: 0-F Dec Hex 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 A 11 B 12 C 13 D 14 E 15 F D:16-31 X: 10-1F Dec Hex 16 10 17 11 18 12 19 13 20 14 21 15 22 16 23 17 24 18 25 19 26 1A 27 1B 28 1C 29 1D 30 1E 31 1F D: 32-47 X: 20-2F Dec Hex 32 20 33 21 34 22 35 23 36 24 37 25 38 26 39 27 40 28 41 29 42 2A 43 2B 44 2C 45 2D 46 2E 47 2F D: 48-63 X: 30-3F DecHex 48 30 49 31 50 32 51 33 52 34 53 35 54 36 55 37 56 38 57 39 58 3A 59 3B 60 3C 61 3D 62 3E 63 3F D: 64-79 X:40-4F Dec Hex 64 40 65 41 66 42 67 43 68 44 69 45 70 46 71 47 72 48 73 49 74 4A 75 4B 76 4C 77 4D 78 4E 79 4F D:80-95 X: 50-5F Dec Hex 80 50 81 51 82 52 83 53 84 54 85 55 86 56 87 57 88 58 89 59 90 5A 91 5B 92 5C 93 5D 94 5E 95 5F D: 96-111 X: 60-6F Dec Hex 96 60 97 61 98 62 99 63 100 64 101 65 102 66 103 67 104 68 105 69 106 6A 107 6B 108 6C 109 6D 110 6E 111 6F D: 112-127 X:70-7F Dec Hex 112 70 113 71 114 72 115 73 116 74 117 75 118 76 119 77 120 78 121 79 122 7A 123 7B 124 7C 125 7D 126 7E 127 7F D: 128-143 X: 80-8F Dec Hex 128 80 129 81 130 82 131 83 132 84 133 85 134 86 135 87 136 88 137 89 138 8A 139 8B 140 8C 141 8D 142 8E 143 8F D: 144-159 X: 90-9F Dec Hex 144 90 145 91 146 92 147 93 148 94 149 95 150 96 151 97 152 98 153 99 154 9A 155 9B 156 9C 157 9D 158 9E 159 9F D: 160-175 X: A0-AF DecHex 160 A0 161 A1 162 A2 163 A3 164 A4 165 A5 166 A6 167 A7 168 A8 169 A9 170 AA 171 AB 172 AC 173 AD 174 AE 175 AF D:176-191 X: B0-BF Dec Hex 176 B0 177 B1 178 B2 179 B3 180 B4 181 B5 182 B6 183 B7 184 B8 185 B9 186 BA 187 BB 188 BC 189 BD 190 BE 191 BF D: 192-207 X: C0-CF Dec Hex 192 C0 193 C1 194 C2 195 C3 196 C4 197 C5 198 C6 199 C7 200 C8 201 C9 202 CA 203 CB 204 CC 205 CD 206 CE 207 CF D: 208-223 X: D0-DF Dec Hex 208 D0 209 D1 210 D2 211 D3 212 D4 213 D5 214 D6 215 D7 216 D8 217 D9 218 DA 219 DB 220 DC 221 DD 222 DE 223 DF D: 224-239 X:E0-EF Dec Hex 224 E0 225 E1 226 E2 227 E3 228 E4 229 E5 230 E6 231 E7 232 E8 233 E9 234 EA 235 EB 236 EC 237 ED 238 EE 239 EF D: 240-255 X: F0-FF Dec Hex 240 F0 241 F1 242 F2 243 F3 244 F4 245 F5 246 F6 247 F7 248 F8 249 F9 250 FA 251 FB 252 FC 253 FD 254 FE 255 FF


Why enumerator data type is used in c plus plus?

Enumerated data types are a set of user-defined constants called enumerators that provide context to a range of values. For instance, if you define the following constants: static const int Monday=0; static const int Tuesday=1; // ... static const int Sunday = 6; static const int January=0; static const int February=1; // ... static const int December=12; Then there's nothing to prevent you from coding the following: int var1 = January; int var2 = Tuesday; // ... int var3 = var1 + var2; What exactly does var3 represent? A month? A day? Or something else entirely? The problem is the compiler can't help you because you've not actually done anything wrong. As far as the compiler is concerned, all you've done is add two ints together to produce a third int. Whether it makes sense or not is another matter altogether. Enumerations exist to prevent this sort of problem. enum day { Monday, Tuesday, ..., Sunday }; enum month { January, February, ..., December }; month var1 = January; day var2 = Tuesday; // ... int var3 = var1 + var2; Now the compiler will tell you there is no suitable plus operator that accepts an l-value of month and an r-value of day. Enumerators have an implied type of signed int, but you can also specify an alternative type, provided it is an intrinsically primitive integral type, such as int, char, or short, whether signed or unsigned. However, even when typed, you cannot use any operators upon them unless you specifically provide an operator overload to cater for them. Thus the following will not work: for( day d=Monday; d<=Sunday; ++d ) // ... Without a suitable operator overload for the prefix increment operator, you must use an explicit cast, such as follows: for( int i=Monday; i<=Sunday; ++i ) { day d = reinterpret_cast<day>(i); // ... } Although you've got to work a bit harder to use enumerators, the point is that the additional work is required in order to prevent problems such as those highlighted at the start of this answer. Enumerators enlist the compiler to help you spot errors, forcing you to make a conscious decision whenever you want to override the compiler's help, but ultimately ensuring your code is as robust as possible.


How do you draw timing diagram for 8085 microprocessor CMP instruction?

how to draw timing diagram?discuss the various stepsYou first need to understand the machine cycles of 8085The status signals are as followsIO/M(bar) :--- 1 IO 0 MemoryS1 | S0 | Process-----------------------------------------------------------0 | 0 | Halt0 | 1 | Write1 | 0 | Read1 | 1 | Opcode fetch1)Opcode fetch ( Compulsory Machine cycle)This cycle requires 4 T-states.1st T state ALE is high and lower byte of address from PC(Program Counter) is placed on the multiplexed data/address bus.In the second T-state, after checking the status of READY pin, RD(bar) goes low the opcode is placed on the data bus, This state continues in the 3rd T-State.The fourth T-state is used by the uP to decode the instruction and to generate the relevant control signals. The state of the address bus is unspecified( This T-state is used by some DMA controllers to transfer data in hidden/transperant mode)IO/M_ = 0 S1=1 S0=12)Memory read(for 1 byte)Three T states, similar to the first 3 T states of opcode fetch( as first 3 states of opcode fetch is effectively memory read)IO/M_ 0 S1 = 1 S0 = 03) Memory Write(for 1 byte)Similar to Write but instead of RD bar WR bar is used. Also the data stays on the bus a little longer than READ*.IO/M_ 0 S1 = 0 S0 = 14) & 5) IO write and readSimlar to the above two, only IO/M_ = 1These are the basic machine cycles you will require to draw timing diagrams for most instructions. There are additional cycles such as INTA bar and Bus idle. If anyone requires diagrams for these cycles, message me and i will explain them later.Also some instructions like CALL require 6 T-state Opcode fetch. For this you can draw the 4 T state Opcode fetch but 4th T state extended to the fifth and sixth T state.------------------------------------------------------------------------------------------Now, to draw the timing diagram for any instruction you need to understand what exactly the instruction does. I will explain a few. If you need a specific instruction, msg me.A) MOV A,BDraw only opcode fetch as no further memory acces is required as operands specified in registers onlyB) MVI A,32HDraw opcode fetch and memory read as operand(1 byte) has to be fetched from memoryC) LXI H, 2000HDraw Opcode Fetch and two memory Reads as two bytes, 00H and 20H, (lower byte fetched first) have to be read from memory.D) STA 2000HThis instruction stores the value of accumulator(8 bit) at the location specified.Opcode fetch + Memory read * 2 (byte address) + Memory write * 1(1 byte)i.e 13 T-states 4+3+3+3During the memory write the address bus contains the address fetched by the memory read cycle earlierE) CALL addresss(can be specifed in terms of a label)During a call instruction the uP pushes the current value of program counter(16 bit ie 2 byte) to the stack and then copies the new value from the memory(specified in the instruction)6 T state Opcode fetch+ Memory write * 2 (PC pushed to stack)+ Memory read * 2 (New value of PC fetched from memory)ie 6 + 3 + 3 + 3 + 3 = 18 T-statesNote that during the memory write cycle the address bus contains the address of the top of the stack(Stack Pointer)F)JMP 16-bit address3 Cycles as Follows4 T-State Opcode Fetch+ 2 * Memory Read ( 16 bit = 2 bytes)ie 4 + 3 + 3 = 10 T-states.Note that separate cycle is not required for loading the address into the PC as PC is a register.

Related questions

What is the meaning of f6 trim in gate valve?

F6 Trim means that STEM, BODY seating surface, GATE seating surface, bushing (or a deposited weld), for the backseat and stem hole guide, small internal parts that normally contact the service fluid, excluding the pin that is used to make a stem-to-gate connection (this pin shall be made of an austenitic stainless steel material) are made of a 13Cr material (typical specification type ASTM A276T410 or T420). See API STD 600 - 2009.


What is the valve clearance of Suzuki F6-A 12 valves engine?

How to adjust and instruction


How powerful is a F6 tornado?

There is no such thing as an F6 tornado.


What is the F6 function in Excel operation?

The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.The F6 function key and key combinations allow for movement between different parts of the spreadsheet in Excel. The F6 key moves you to the next pane of a split window. Shift - F6 moves you to the previous pane of a split window. Ctrl - F6 moves you to the next open workbook. Ctrl - Shift - F6 moves you to the previous open workbook.


What is the meaning of f6 in gate valves?

F6 Trim means that STEM, BODY seating surface, GATE seating surface, bushing (or a deposited weld), for the backseat and stem hole guide, small internal parts that normally contact the service fluid, excluding the pin that is used to make a stem-to-gate connection (this pin shall be made of an austenitic stainless steel material) are made of a 13Cr material (typical specification type ASTM A276T410 or T420). See API STD 600 - 2009.


Was the tri-state tornado an F6?

No. The Tri-State tornado was an F5. There is no such thing as an F6 tornado.


How do you get an F6 in Tornado Jockey?

well im sorry but there is no such thing as a F6 F5 is the highest tornado rating


What does 14k f6 mean inside a gold ring?

14k is 14k in gold, f6 is the band size


Why is an F6 tornado the most frenquent tornado?

There has never been an F6 tornado. F0 is the most common type.


Where can a person purchase a Polar F6 Heart Rate Monitor online?

You can purchase the Polar F6 Heart Rate Monitor online at the heartratemonitors store. You can also purchase the Polar F6 along with other brands at Amazon.


What does F6 mean on a sterling silver ring?

'F6' for Female size 6 on the band in a silver ring. Gold pieces would include karat as well, so a gold band could read 14k F6.


Where is the F6 Gallery in Arlington Texas located?

The address of the F6 Gallery is: 3209 Calender Road, Arlington, TX 76017-4710