A Compound TCP Approach for High-Speed and Long Distance Networks

Size: px
Start display at page:

Download "A Compound TCP Approach for High-Speed and Long Distance Networks"

Transcription

1 A Compound TCP Approach for High-speed and Long Distance Networks Kun Tan Jingmin Song Microsoft Research Asia Beijing, China {kuntan, jmsong, Qian Zhang DCS, Hong Kong Univ. of Sci & Tech Hong Kong Murari Sridharan Microsoft Corporation One Microsoft way, Redmond, WA, USA Abstract Many applications require fast data transfer over high speed and long distance networks. However, standard TCP fails to fully utilize the network capacity due to the limitation in its conservative congestion control (CC algorithm. Some works have been proposed to improve the connection s throughput by adopting more aggressive loss-based CC algorithms. These algorithms, although can effectively improve the link utilization, have the weakness of poor RTT fairness. Further, they may severely decrease the performance of regular TCP flows that traverse the same network path. On the other hand, pure delay-based approaches that improve the throughput in high-speed networks may not work well when the traffic is mixed with both delaybased and greedy loss-based flows. In this paper, we propose a novel Compound TCP (CTCP approach, which is a synergy of delay-based and loss-based approach. Specifically, we add a scalable delay-based component into the standard TCP Reno congestion avoidance algorithm (a.k.a., the loss-based componen. The sending rate of CTCP is controlled by both components. This new delay-based component can rapidly increase sending rate when network path is under utilized, but gracefully retreat in a busy network when bottleneck queue is built. Augmented with this delay-based component, CTCP provides very good bandwidth scalability with improved RTT fairness, and at the same time achieves good TCP-fairness, irrelevant to the windows size. We developed an analytical model of CTCP and implemented it on the Windows operating system. Our analysis and experiment results verify the properties of CTCP. Index Terms TCP performance, delay-based congestion control, high speed network I. INTRODUCTION Moving bulk data quickly over high-speed data network is a requirement for many applications. For example, the physicists at CERN LHC conduct physics experiments that generate gigabytes of data per second, which are required to be shared among other scientists around the world []. Currently, most applications use the Transmission Control Protocol (TCP to transmit data over the Internet. TCP provides reliable data transmission with embedded congestion control algorithm [] which effectively removes congestion collapses in the Internet by adjusting the sending rate according to the available bandwidth of the network. However, although TCP achieves remarkable success (maximizing the utilization of the link and fairly sharing bandwidth between competing flows in today s Internet environment, it has been reported that TCP substantially underutilizes network bandwidth over high-speed and long distance networks [4]. In high-speed and long distance networks, TCP requires a very large window, roughly equal to the bandwidth delay production (BDP, to efficiently utilize the network resource. However, the standard TCP takes a very conservative approach to update its window in congestion avoidance stage. Specifically, TCP increases its congestion window by one packet every round trip time (RTT and reduces it by half on a loss event. If BDP is too large, it requires an unreasonable long time for TCP to expand its window to that value. As an example, Floyd et al. [4], pointed out that under a Gbps link with ms delay, it will roughly take one hour for a standard TCP flow to fully utilize the link capacity, if no packet is lost or corrupted. This one hour error free transmission requires a packet loss rate around - with 5-byte packets (one packet loss over,6,, packet transmission!. This requirement is far from the reality of current network hardware. Recent research has proposed many approaches to address this issue. One class of approaches modifies the increase/decrease parameters of TCP congestion avoidance algorithm (CAA and makes it more aggressive. Like TCP, approaches in this category are loss-based that uses packet-loss as the only indication of congestion. Some typical proposals include HSTCP [4], STCP [5], and BIC-TCP [7]. Another class of approaches, by contrast, is delay-based, which makes congestion decisions that reduce the transmission rate based on RTT variations, e.g., FAST TCP [6]. All aforementioned approaches are shown to overcome TCP s deficiencies in high bandwidthdelay networks to some extent. However, in this paper, we argue that for a new high-speed protocol, following requirements must be met before it can be really deployed into the Internet: [Efficiency] It must improve the throughput of the connection to efficiently use the high-speed network link. [RTT fairness] It must also have good intra-protocol fairness, especially when the competing flows have different RTTs. [TCP fairness] It must not reduce the performance of other regular TCP flows competing on the same path. This means that the high-speed protocols should only make better use of free available bandwidth, but not steal bandwidth from other flows. For existing loss-based high-speed solutions, it is essential to be highly aggressive to satisfy the efficiency requirement. However, this aggressiveness also causes severe RTT unfairness and TCP unfairness. On the other hand, for delay-based approaches, although they can achieve high efficiency and good RTT fairness in a network where the majority flows are delay-based, they may suffer from significant lower throughput than their fair share, if most competing flows are loss-based, e.g. TCP-! ///666///$$$... (((ccc666 IIIEEEEEEEEE

2 Reno. The reason is that delay-based approaches reduce their sending rate when bottleneck queue is built to avoid selfinduced packet losses. However, this behavior will encourage loss-based flows to increase their sending rate since they may observe less packet losses. As a consequence, the loss-based flows will obtain much more bandwidth than their share while delay-based flows may be starved []. In this paper, we propose a new congestion control protocol for high-speed and long delay environment that satisfies all aforementioned three requirements. Our new protocol is a synergy of both delay-based and loss-based congestion avoidance approaches, which we call it Compound TCP (CTCP. The key idea of CTCP is to add a scalable delay-based component to the standard TCP. This delay-based component has a scalable window increasing rule that not only efficiently uses the link capacity, but also reacts early to congestion by sensing the changes in RTT. If a bottleneck queue is sensed, the delaybased component gracefully reduces the sending rate. This way, CTCP achieves good RTT fairness and TCP fairness. We have developed analytical model of CTCP and performed comprehensive performance studies on CTCP based on our implementation on Microsoft Windows platform. Our analysis and experimental results suggest that CTCP is a promising algorithm to achieve high link utilization while maintaining good RTT fairness and TCP fairness. The rest of paper is organized as follows. In next section, we elaborate the background and existing approaches in detail. We review these schemes against the three properties we mentioned before. Then, we propose our design of CTCP in Section III. Analytical analysis of CTCP is presented in Section IV. We describe the implementation in Section V, and experiment results of CTCP are presented in Section VI. We conclude the paper in Section VII. II. BACKGROUND AND RELATED WORK The standard TCP congestion avoidance algorithm employs an additive increase and multiplicative decrease (AIMD scheme. When there is no packet loss detected (by means of three duplicate-acks or retransmission timeou, the congestion window (cwnd is increased by one Maximum Segment Size (MSS every RTT. Otherwise, if a packet loss is detected, the TCP sender decreases cwnd by half. In a high-speed and long delay network, it requires a very large window, e.g. thousands of packets, to fully utilize the link capacity. Therefore, it will take the standard TCP many RTTs to recover the sending rate upon a single loss event. It is well-known that the average TCP congestion window is inversely proportional to the square root of the packet loss rate, as shown in ( [9][3],. MSS W =, ( p where W is the average TCP window and p is the average packet loss rate. Therefore, it requires extremely small packet loss rate to sustain a large window. With the packet loss rate in real life networks, a standard TCP sender may never open its window large enough to fully utilize the high-speed link. Reno. In this paper, terms of regular TCP and standard TCP all refer to TCP- One straightforward way to overcome this limitation is to modify TCP s increase/decrease control rules in congestion avoidance. More specifically, in the absence of packet loss, the sender increases cwnd more quickly and decreases it more gently upon a packet loss. STCP [5] alters TCP s AIMD congestion avoidance scheme to MIMD (multiplicative increase and multiplicative decrease. Specifically, STCP increases cwnd by. MSS on every received ACK and reduces cwnd to its.875 times upon a packet loss. HSTCP [4], on the other hand, still mimics the AIMD scheme, but with varying increase/decrease parameters. As cwnd increases from 38 packets to 83,333 packets, the decrease parameter reduces from.5 to., while the increase parameter increases accordingly. HSTCP is less aggressive than STCP, but is far more aggressive than the standard TCP. As pointed in [7], these aggressive schemes suffer great RTT unfairness. From simple analysis based on synchronized loss model, Xu et al., [7] shows that for any loss-based congestion control protocol with steady state throughput in the form of Th C R p =, where R is the RTT, p is the packet loss rate, C and d are constant, the throughput ratio between two flows with different RTT should be inversely proportional to /(-dth power of their RTT ratio. Or, Th R = Th R d. This value d for HSTCP and STCP is.8 and, respectively. Thus, the RTT unfairness of HSTCP and STCP is 5.56 and infinite, respectively. In [7], BIC-TCP is proposed to mitigate this RTT unfairness by using binary increase scheme and switching to AIMD with constant parameters when cwnd is large. BIC-TCP has similar RTT-fairness to TCP-Reno when the window is large and then the sender has switched to AIMD mode (window > 6 packet and in this time d is near.5. However, if the protocol works at lower window range, d could increase to near and BIC-TCP may have similar RTT unfairness to STCP. Besides the RTT-unfairness, the above approaches also have TCP-unfairness concerns when they are working in a mixed network environment with standard TCP flows and these enhanced flows. When an aggressive high-speed variant flow traverses the bottleneck link with other standard TCP flows, it may increase its own share of bandwidth by reducing the throughput of other competing TCP flows. The reason is that the aggressive high-speed variants will cause much more self-induced packet losses on bottleneck links, and therefore push back the throughput of the regular TCP flows. Indeed, there is a mechanism present in the existing aggressive high-speed variants to revert to standard TCP congestion avoidance algorithm if the window is smaller than a pre-defined threshold (low_window as defined in [4], which is typically set to 38 packets. This, although may prevent collapses in heavy congested cases, can not provide satisfactory TCP-fairness in general network situations. The aggressive behavior of these enhanced flows may severely degrade the performance of regular TCP flows whenever the network path is already highly utilized. As an illustration, we conducted the following simulation in NS []. The network topology was a simple dumbbell topology, as shown in Figure. The capacity of the bottleneck link was set to Mbps and the round-trip delay was ms. We tested the cases where one d

3 enhanced high-speed flow (i.e. HSTCP, STCP, BIC-TCP was competing with five regular TCP flows. We also compared with the case where there were six identical regular TCP flows. The results are summarized in Figure. With this network setup, six regular TCP flows already fully utilized the network path. As clearly shown in Figure, all the three aggressive high-speed flows occupied over 6% of link bandwidth in its testing, and the throughput of a regular TCP was reduced to only 3% compared to that if there was no aggressive highspeed flow. In other words, each aggressive high-speed flow increased its throughput only by reducing throughputs of other regular TCP flows, and therefore caused TCP unfairness. Note that BIC-TCP caused even severe TCP-unfairness than HSTCP in this case. According to [7], BIC-TCP may have better TCPfairness property than HSTCP when the window is large. But in the window size in this example, the aggressiveness of BIC- TCP was between HSTCP and STCP. Gbps, ms Mbps, 5ms Gbps, ms Figure. The network topology with simple bottleneck link. Link Utilization (% % 8% 6% 4% % % Aggressive High-speed Variance Regular TCP Unused 6 Regular TCP HSTCP vs 5 RegTCP BIC-TCP vs 5 RegTCP STCP vs 5 RegTCP Figure. Bandwidth allocation between competing flows. Another class of high speed protocols, like FAST TCP [6], instead of making simple modifications on TCP s increase/decrease parameters, chooses to design a new congestion control scheme which takes RTT variances as congestion indicator. These delay-based approaches are more-or-less derived from seminal work of TCP Vegas []. One core idea of delay-based congestion avoidance is that the increase of RTT is considered as early congestion, and the sending rate is reduced to avoid self-induced buffer overflow. Another interpretation of this delay-based behavior is that it tries to maintain a fixed buffer occupation. In this way, they will not cause large queueing delay and reduce packet losses. FAST TCP can be regarded as a scaled version of TCP Vegas. FAST TCP incorporates multiplicative increase if the buffer occupied by the connection We chose the parameters of BIC-TCP according to [7]. at the bottleneck is far less than some pre-defined threshold α, and switch to linear increase if it is near α. Then, FAST tries to maintain the buffer occupancy around α and reduces sending rate if delay is further increased. Theoretical analysis and experiments show that delay-based approaches have better properties than pure loss-based approaches, such as higher utilization, less self-induced packet losses, faster convergence speed, better RTT fairness and stabilization [7][6]. However, previous work also reveals that delay-based approaches may not be able to obtain fair share when they are competing with lossbased approaches like standard TCP []. This can be explained as follows. Consider a delay-based flow, e.g. Vegas or FAST, shares a bottleneck link with a standard TCP. Since the delaybased flow tries to maintain a small number of packets in the bottleneck queue, it will stop increasing its sending rate when the delay reaches some value. However, the loss-based flow will not react to the increase of delay, and continues to increase the sending rate. This, observed by the delay-based flow, is considered as congestion indication and therefore the sending rate of the delay-based flow is further reduced. In this way, the delay-based flow may obtain far less bandwidth than its fair share. One possible way to remedy this is to design a dynamic scheme to choose α to ensure it is TCP-compatible [6]. However, designing such a scheme is simply not trivial, since the correct α is a function of buffer size and number of concurrent connections, which are generally unknown in a real world network. To our best knowledge, this is no design of such a dynamic scheme for this purpose. Besides the protocols discussed above, there is recently a proposal of TCP Africa [7]. Similar to CTCP, it also proposes to incorporate delay information to improve the RTT and TCP fairness. However, the key difference of this proposal to CTCP lies in that, in TCP Africa, the delay-information is used only as a trigger to switch TCP Africa from fast mode (aggressive increase and slow mode (additive increase, but never used to reduce the window size. Therefore, TCP Africa is intrinsically a loss-based approach. When competing with other regular TCP flows, it will still steal much bandwidth from them, though better than HSTCP. As we will show later in our design and experiments, reducing window based on delay information is essential to prevent stealing bandwidth from other regular TCP flows in a mixed network environment (see SectionVI.B.6. III. THE COMPOUND TCP After understanding the existing approaches and their limitations, we revisit the design of a high-speed congestion control algorithm that fulfills all three requirements listed in Section I. The key idea is that if the link is under-utilized, the high-speed protocol should be aggressive in increasing sending rate to obtain available bandwidth more quickly. However, once the link is fully utilized, being aggressive is no longer good, as it will only cause problems like TCP unfairness. We note that delaybased approaches already have this nice property of adjusting its aggressiveness based on the link utilization, which is observed by the end-systems from the increase in the packet delay. However, as mentioned in previous section, the major weakness of delay-based approaches is that they are not competitive to

4 loss-based approaches. And this weakness is difficult to be remedied by delay-based approaches themselves. Having made this observation, we propose to adopt a synergic way that combines a loss-based approach with a delaybased approach for high speed congestion control. For easy understanding, let s imagine application A communicates with application B simultaneously using two flows. One is a standard loss-based TCP flow, and the other is a delay-based flow. When the network is underutilized, A can get an aggregated communication throughput, with B, which is the sum of both flows. With the increase of the sending rate, queue is built at the bottleneck, and the delay-based flow gradually reduces its sending rate. The aggregated throughput for the communication also gradually reduces but is bound by the standard TCP flow. Then, there comes the core idea of our novel Compound TCP (CTCP, which incorporates a scalable delay-based component into the standard TCP congestion avoidance algorithm. This scalable delay-based component has a rapid window increase rule when the network is sensed to be under-utilized and gracefully reduces the sending rate once the bottleneck queue is built. With this delay-based component as an auto-tuning knob, Compound TCP can satisfy all three requirements pretty well: CTCP can efficiently use the network resource and achieve high link utilization. In theory, CTCP can be very fast to obtain free network bandwidth, by adopting a rapid increase rule in the delay-based component, e.g. multiplicative increase. However, in this paper, we choose CTCP to have similar aggressiveness to obtain available bandwidth as HSTCP. The reasons are two-folds. On one hand, HSTCP has been tested to be aggressive enough in real world networks and is now an experimental IETF RFC. On the other hand, we want to bound the worst case behavior of CTCP as HSTCP if the network is poorly buffered, as we will elaborate in Section VI.B.5. CTCP has similar or even improved RTT fairness compared to regular TCP. This is due to the delay-based component employed in the CTCP congestion avoidance algorithm. It is known that delay-based flow, e.g. Vegas, has better RTT fairness than the standard TCP []. 3 CTCP has good TCP-fairness. By employing the delaybased component, CTCP can gracefully reduce the sending rate when the link is fully utilized. In this way, a CTCP flow will not cause more self-induced packet losses than a standard TCP flow, and therefore maintains fairness to other competing regular TCP flows. A. Architecture As explained earlier, CTCP is a synergy of a delay-based approach with a loss-based approach. This synergy is implemented by adding a new scalable delay-based component in the standard TCP congestion avoidance algorithm (also called lossbased componen. To do so, a new state variable is introduced in current TCP Control Block (TCB, namely, dwnd (Delay Window, which controls this delay-based component in CTCP. The conventional congestion window, cwnd, remains untouched, which controls the loss-based component in CTCP. Then, the CTCP sending window now is controlled by both cwnd and dwnd. Specifically, the TCP sending window (called window hereafter is now calculated as follows: win = min( cwnd + dwnd, awnd, where awnd is the advertised window from the receiver. The update of dwnd will be elaborated in detail in next subsection, while the update of cwnd is in the same way as in the regular TCP in the congestion avoidance phase, i.e., cwnd is increased by one MSS every RTT and halved upon a packet loss event. However, here CTCP may send (cwnd +dwnd packets in one RTT. Therefore, the increment of cwnd on arrival of an ACK is modified accordingly: cwnd = cwnd + /( cwnd + dwnd. ( CTCP keeps the same Slow-Start behavior of regular TCP at the start-up of a new connection. It is because that we believe slow-start, which exponentially increases window, is quick enough even for fast and long distance environment that we target at [4]. We initially set dwnd to zero if the connection is in slow-start state, and the delay-based component is effective only when the connection is working at congestion avoidance phase. B. Design of delay-based congestion avoidance The delay-based component in CTCP is enabled when the connection is in congestion avoidance phase. This delay-based algorithm should have the following properties. Firstly, it should have an aggressive, scalable increase rule when the network is sensed to be under-utilized. Secondly, it should also reduce sending rate accordingly when the network is sensed to be fully utilized. By reducing its sending rate, the delay-based component yields a step to competing TCP flows and ensures TCP fairness. Lastly, it should also react to packet losses. It is because packet losses may still be an indicator of heavy congestion, and hence reducing sending rate upon packet loss is a necessary conservative behavior to avoid congestion collapse. Our algorithm for delay-based component is derived from TCP Vegas. A state variable, called basertt, is maintained as an estimation of the transmission delay of a packet over the network path. When the connection is started, basertt is updated by the minimal RTT that has been observed so far. An exponentially smoothed RTT, srtt, is also maintained. Then, the number of backlogged packets of the connection can be estimated by following algorithm: Expected = win / basertt. Actual = win / RTT Diff = ( Expected Actual basertt The Expected gives the estimation of throughput we get if we do not overrun the network path. The Actual stands for the throughput we really get. Then, (Expected Actual is the difference between the expected throughput and the actual throughput. When multiplying by basertt, it stands for the amount of data that injected into the network in last round but does not pass through the network in this round, i.e. the amount of data backlogged in the bottleneck queue. An early congestion is detected if the number of packets in the queue is larger than a threshold γ. If diff <γ, the network path is determined as under-utilized; otherwise, the network path is considered as busy and delay-based component should gracefully reduce its win-

5 dow. Note here, it requires the connection to have at least γ packets backlogged in the bottleneck queue to detect early congestion. Therefore, we want γ to be small, since it requires less buffer size on the bottleneck to ensure TCP fairness. On the other hand, we can not set γ to be too small, since it may cause false early congestion detections and adversely affect the throughput. In this paper, we set γ to be 3 packets. As we will show in Section VI.B.4, we believe this γ value is a pretty good tradeoff between TCP fairness and throughput. The increase law of the delay-based component should make CTCP more scalable in high-speed and long delay pipes. In this paper, we choose the CTCP window evolution to have the binomial behavior. More specifically, when there is no congestion occurs, neither increase in queue nor packet losses, the CTCP window increases as follows k win ( t + = win( + α win( ; (3 while there is a lose, the window is multiplicatively decreased, win ( t + = win( ( β. (4 Parameters of α, β and k are tunable to give out desirable scalability, smoothness and responsiveness. As mentioned before, we tune CTCP to have comparable scalability to HSTCP when there is absence of congestion (the detailed derivation is presented in Section IV.A. Considering there is already a loss-based component in CTCP, the delay-based component needs to be designed to only fill the gap, and the overall CTCP should follows the behavior defined in (3 and (4. We summarize the algorithm for the delay-based component as in (5 k + dwnd( + ( α win(, if diff < γ +, (5 dwnd( t + = ( dwnd( ζ diff, if diff γ + ( win( ( β cwnd /, if loss is detected where (. + is defined as max (.,. The first line shows that in the increase phase, dwnd only needs to increase k + ( α win( packets, since the loss-based component (cwnd will also increase by packet. Similarly, when there is a loss, dwnd is set to the difference between the desired reduced window size and that can be provided by cwnd. The rule on the second line is important. It shows that dwnd does decrease when the queue is built, and this is the core for CTCP to preserve good RTT and TCP fairness. Here, ζ is a parameter that defines how rapidly the delay-based component should reduce this window when early congestion is detected. Note that dwnd will never be negative. Therefore, CTCP window is lower-bounded by its loss-based component (a.k.a. a standard TCP. In above control laws, we assume the loss is detected by three duplicate ACKs. If a retransmission timeout occurs, dwnd should be reset to zero and the delay-based component is disabled. It is because that after a timeout, the TCP sender is put into slow-start state. After the CTCP sender exits the slow-start recovery state, the delay-based component may be enabled once more. IV. ANALYSIS OF CTCP In this section, we develop analytical models of CTCP to study its characteristics. More specifically, we want to quantify how well CTCP satisfies the three requirements proposed earlier for high speed protocols, namely efficiency property, RTT fairness property, and TCP fairness property. In the following analysis, we use a synchronized loss model. There is much evidence showing that synchronized loss is common in high-speed networks [7]. We develop our analytic model based on a simple network topology which contains one bottleneck link, as shown in Figure 3, where u stands for the link capacity; B is the buffer size on the bottleneck link; and Ti is the transmission delay. Note that this transmission delay can be different for different connections. l CTCP m Regular TCP Figure 3. A simple network model. A. Efficiency property We first focus on the stable state throughput of CTCP. We ignore the slow-start phase and assume all loss events are detected by three duplicate ACKs. We follow the common assumptions as in previous work [3][] that packet losses in different rounds are independent and RTT is independent to the window size of individual flow. The evolution of the CTCP window is illustrated in Figure 4. At time D, the connection just experiences a loss event and reduces the window size. At this point, the queue at the bottle-neck has been drained, and therefore, the window increases binomially. At time E, the queue begins to build, the CTCP senses this from the increase in the packet delay, and dwnd decreases to try to maintain a stable window. Note that cwnd still increases one MSS each round and when dwnd decreases to zero, CTCP window increases again at time F. CTCP continues to probe the network capacity until a packet loss occurs at time G, and window is reduced by β W. The dashed line in Figure 4 illustrates the evolution of cwnd in CTCP. From time D to time G, we define a Loss Free Period (LFP. B u Ti

6 Wm(-β W D E F G Wm LFP Figure 4. The evolution of CTCP window during a LFP. We denote w the window size at the stable state, i.e. from time E to time F, at which CTCP tries to maintain γ packets backlogged at the bottleneck queue. Following the previous analysis [], the average diff in this stable state is approximately γ. Therefore, we have R w = γ, (6 R basertt where R is the round trip time. Below, we develop the throughput model of CTCP. During time D to E, window increases according to k ( k dw α W W α t = =. (7 dt R k R Therefore, the interval between D and E can be calculated as R [ ] ( k ( k ( k T DE = te td = W ( β W. (8 m α ( k And the number of packets transmitted during time interval D- E is N DE te td W α( k dt = R R ( ( k R te = td k ( k k ( k ( W ( β W t dt. (9 = m α k During time E to F, while cwnd continues to grow, dwnd keeps dropping. As a consequence, the CTCP window remains stable until dwnd drops to zero and window starts again to increase at time F. Therefore, we have ( W ( β W TEF = TFD TDE = m R, ( R [ ] ( k ( ( k ( k W β W m α ( k and N EF = W T. ( EF During time F to G, CTCP window increases linearly just as if it is a simple TCP Reno. Therefore, we simply have TFG = ( Wm W R, ( and N ( ( ( FG = W + Wm Wm W = Wm W (3 The total number of packet sent in one LPF is Y = N DE + N EF + N FG / p. (4 Note that W m is the only variable in equation (4, so that we can get it by solving (4. Then, we plug W m back into (8, (, and ( to get the total number of RTTs in each LPF. / p Finally, the throughput of CTCP is Λ =. Below, we give the close-form expression of CTCP throughput in R ( TDE + TEF + TFG a special case, from where we give the rationale based on which we choose CTCP parameters. We assume the packet loss rate is rather high. In this case, random packet loss limits the throughput of CTCP and the stable state mentioned above is never achieved. The response function in this case reflexes the ability of CTCP to use the free bandwidth. Since LFP ends before time E, from (9, we have ( k ( k ( k [ Wm ( β Wm ] =. (5 α ( k p So, now we get k α ( k. (6 Wm = ( k ( ( β k p Therefore, we have the throughput of CTCP as / p α ( k Λ = k k R W ( β. (7 = Window R α m k ( ( β k k k k k ( ( β k p Packet loss rate Figure 5. The response functions. CTCP (k=3/4 HSTCP TCP Reno STCP Note that k determines the slope of response function (aggressiveness. As mentioned earlier, we intend to let CTCP have the similar ability as HSTCP in a congestion-free network. By comparing (7 to the response function of HSTCP, whose window is W HSTCP, we can get k by solving the following. 833 p equation, =.833 k. 8. However, it is rather difficult to k implement an arbitrary power calculation using integer algorithm. Therefore, we choose k equal to.75, which can be implemented with fast integer algorithm of square root. α and β is a trade-off between smoothness and the responsiveness. In this paper, we choose α =/8, β =/. We plot the CTCP response function in log-log scale, in Figure 5, as well as the response functions of the standard TCP, STCP and HSTCP. From the figure, we can see that CTCP is slightly more aggressive than HSTCP in moderate and light packet loss rate and is approaching to HSTCP when window is large. B. Convergence and RTT fairness We first demonstrate that two CTCP flows with same RTT converge to their fair shares and then study its RTT fairness. Theorem : Two CTCP flows converge to fair share under the network model as shown in Figure 3 with same round trip

7 delay. Proof. We use Jain s fairness index [3], which is defined as follows, ( xi F ( x =. n( xi Let s consider two CTCP flows, whose window size are x and x, respectively. We assume x < x. We see F, if and k only if x/ x x / x. In increasing phase, x = α x where ( k ( k k<, it is easy to see that / x > / x, and therefore, F >. When the queuing delay is detected, dwnd is decreasing while cwnd still increases by MSS. Therefore, basertt x = ζ diff = ζx( basertt. RTT We see that when the two streams share the same bottleneck and the propagation delay is same, the basertt observed by two streams should also converge to the same value. Therefore, x ζ diff basertt ζ diff x = = ζ ( basertt > = x x x x RTT x x x, the fairness index also increases. When the packet loss is detected, both rates are decreased by β times. So the fairness index keeps the same value. In summary, in each phase of the control law, the fairness index is none decreasing. Therefore, eventually, the two CTCP flows converge to their fair share. Then, we consider the case where different CTCP flows may have different delays. We show by Theorem that the RTT unfairness of CTCP is bounded by that of the standard TCP Reno. Theorem : Let Th and Th present the throughput of two CTCP flows with round trip time as R and R, respectively. Then, the following inequality satisfied Th R. < Th R Proof. One CTCP flow contains two components, delaybased component (dwnd and the loss-based component (cwnd. The delay-based component reacts to the increase of round trip time and tries to maintain certain number of packets backlogged in the bottleneck queue. Since the flow rate of each connection is approximately proportional to its queue size, the delay-based component of each connection give roughly same throughput. However, we know that the throughput ratio of TCP Reno is inversely proportional to the square of their RTT ratio. Let Λ and Λ ' stand for the throughput of the delay-based and loss-based component of a CTCP flow. We have, Λ Λ Λ' Th Λ + Λ' R ' ' < = = Λ R Th Λ + Λ R R. Note that when including a delay-based component into the standard TCP would improve the RTT fairness of TCP s congestion avoidance algorithm. C. TCP Fairness In this section, we study the impact of CTCP on other standard TCP flows when they are competing for the same bottleneck. More specifically, we want to quantify the throughput reduction of the regular TCP flows because of the introduction of CTCP flows. We define a new metric here to measure the TCP fairness, named bandwidth stolen. Definition : bandwidth stolen. Let P be the aggregated throughput of m regular TCP flows when they compete with another l regular TCP flows. Let Q be the aggregated throughput of m regular TCP flows when they compete with another l high-speed protocol flows in the same network environment. P Q Then, B stolen = is the bandwidth stolen by high-speed protocol flows from regular TCP P flows. TCP CTCP DWND D E F G Figure 6. Window evolution of TCP and CTCP. Theorem 3: With the system model shown in Figure 3, when B > γ m + l LFP, CTCP will not steal bandwidth from competing regular TCP flows. Proof. We assume all packet losses are caused by buffer overflow and synchronized. We use a graph argument. Figure 6 shows a LFP when CTCP flows compete with regular TCP flows. As discussed before, CTCP flows will aggressively increase dwnd until there are γ packets are backlogged at the bottleneck queue at time E. Assume the window size at this point is w. After that, dwnd declines while cwnd continues to increase B by one packet every RTT. Since > γ, cwnd will eventually m + l reach w before the next packet loss event. However, at this point (time F, dwnd is approaching zero. From then, CTCP is just controlled by its loss-based component. And at time G, buffer overflows and all flows sense packet loss. Since all dwnds drop to zero when packet loss occurs, each regular TCP flow will get a maximal window size as if there were (m+l regular TCP flows. The average window of a TCP flow equals to 3/8 of its maximal window size. Therefore, the m regular TCP flows will receive the same throughput no matter they compete with l other TCP flows or l CTCP flows. Theorem 3 shows that CTCP is fairness to TCP flows in term of not reducing TCP s throughput when the network is sufficiently buffered. However, CTCP does have higher throughput than regular TCP. It is because CTCP can make better use of free bandwidth that is currently not utilized. Note that when the network is significantly under buffered (which we argue should not be a normal setup, CTCP may still

8 steal bandwidth from regular TCP flows. It is because when buffer size is small, the early congestion detection may not perform well. We will discuss this worse case behavior in Section VI.B.5. D. Summary of CTCP characteristics Our analysis above shows that the scalable delay-based component in CTCP can aggressively obtain free bandwidth when the network is light-loaded, while gracefully reduces its sending rate when queue is built and avoid adding more selfinduced packet losses. Therefore, CTCP can efficiently utilize the bandwidth while at the same time maintaining good RTT fairness and TCP fairness. V. IMPLEMENTATION We have implemented CTCP on the Microsoft Windows Platform by modifying the TCP/IP stack. The first challenge is to design a mechanism that can precisely track the changes in round trip time with minimal overhead, and can scale well to support many concurrent TCP connections. Naively taking RTT sample for every packet will obviously over-kill both CPU and system memory, especially for high-speed and long distance networks where a whole window worth of data may have tens of thousands packets. Therefore, we need to limit the number of samples taken, but without lose of much accuracy. In our implementation, we only take up to M sample per window of data. M scales with the round trip delay. More specifically, M RTT / δ, where δ is the minimal RTT value on the Internet. We believe δ = ms is a reasonable value, since most of operating systems have a scheduling accuracy larger than that. Since TCP flows can not change their sending rate faster than their RTT, letting M RTT / δ can pretty well track the changes of queueing delay on the network path. In order to further improve the efficiency in memory usage, we develop a dynamic memory allocation mechanism to allocate sample buffers from a kernel fix-size per-processor pool to each connection in an on-demand manner. The smallest unit (block is 56 bytes which can hold 3 samples. As the window increases, more packets are sent. If current sample buffer is not enough, more blocks are allocated and linked to the existing sample buffer until up to M samples are taken. Note that sampled packets are uniformly distributed among the whole window. If a sample block is empty due to a reduced window or lack of application data, the unused blocks are returned to the memory pool. This dynamic buffer management ensures the scalability of our implementation, so that it can work well even in a busy server which could host tens of thousands of TCP connections simultaneously. Note that it may also require high-resolution timer to time RTT samples. On Win3 platform, we can get a micro-second timer by using KeQueryPerformanceCounter. After WinXP SP, KeQuery- PerformanceCounter has been optimized to directly read CPU s Time Stamp Counter if available, and therefore introduces very less overhead. The rest of implementation is rather straightforward. We add two new state variables into the standard TCP Control Block, namely dwnd and basertt. The basertt is a value that tracks the minimal RTT sample measured so far and it is used as an estimation of the transmission delay of a single packet. Following the common practice of high-speed protocols, CTCP also revert to standard TCP behavior when the window is small. Delay-based component only kicks in when cwnd is larger than some threshold, lowwnd. When the delay-based component kicks in, we let it at least increase one MSS per RTT. Therefore, from the increase law in equation (5, CTCP window should be at least 4 packets. So, we select lowwnd to be 4 MSS. Dwnd is updated at the end of each round. If more than N (currently set to 5 RTT samples are taken, an average RTT is calculated and used to update dwnd according to equation (5. Note that RTT sampling and dwnd update are frozen during the loss recovery phase. It is because the retransmission during the loss recovery phase may result in inaccurate RTT samples and can adversely affect the delay-based control. VI. PERFORMANCE EVALUATION A. Methodology We constructed a test-bed to conduct experiments for CTCP in our lab. The test-bed contains several DELL Desktop GX8 desktops equipped with Intel Pro/ XT Giga Ethernet cards. We use a DELL WS45 workstation as a router that connects two DLink DGS-8T gigabit switches. The router is running FreeBSD 5.3 and DummyNet [5]. The DELL desktops are running Microsoft Windows and connected to the DLink switches. The testing environment is illustrated in Figure 7. We have extended the Windows TCP/IP stack to simultaneously support multiple TCP variants. Applications can dynamically select a congestion control scheme by a Socket option. We modified Iperf [] to support the new Socket option, so that it can test the different TCP variants. We configure DummyNet to emulate network conditions with different packet loss rate and round trip delay. We configure the polling frequency of FreeBSD system to be Hz, which in our experiments gives best tradeoff between simulation smoothness and the CPU usage [8]. In each experiment, we set DummyNet to limit the bottleneck link speed to be 7Mbps. It is the highest speed we can get before the router s CPU becomes a bottleneck. We configure the router to use DropTail queue management. Unless otherwise pointed, the link delay is ms and the buffer size at the router is set to 5 packets. Sender Iperf Multi-support TCP/IP stack MS Windows Giga Ethernet Switch Router DummyNet FreeBSD 5.3 Giga Ethernet Switch Figure 7. Testing Environment. Receiver Iperf Multi-support TCP/IP stack MS Windows We test three TCP implementations on our test-bed: CTCP, HSTCP and the default Windows TCP implementation (regular TCP. We make our own implementation of HSTCP according to RFC 3645 and the reference implementation in NS []. In all three TCP implementations, New Reno, SACK, D-SACK

9 and TCP high performance extensions are implemented and enabled by default. Each experiment lasts for 3 seconds, and the results presented are averaged over 5 runs of each test. B. Results Utilization We first want to verify whether or not CTCP can effectively use the available bandwidth in high-speed and long delay environment. We configured DummyNet to generate random packet losses. We varied the loss rate from - to -6. We ran 4 regular TCP, HSTCP and CTCP flows, respectively. The aggregated throughput of each TCP variant is plotted in Figure 8. Note that when packet loss is high (> -3, all three protocols behave exactly the same. However, with the decrease of packet loss rate, HSTCP and CTCP can use the bandwidth more efficiently. CTCP has slightly higher throughput compared to HSTCP. The reasons are two-fold: the CTCP s response function is slightly more aggressive than HSTCP in moderate window range; and CTCP introduces much less self-induced loss due to the delay-based nature. We then conducted another set of experiments under burst background traffic. We generated On/Off UDP traffic with different peak data rate. The on-period and off-period of the UDP traffic were both s. Table summarizes the aggregated throughputs and link utilizations (shown in brackets, normalized by the theoretical available bandwidth left over by UDP traffic of 4 testing flows. It shows that CTCP and HSTCP can efficiently recover from the packet losses caused by burst background traffic and remain high link utilization. However, regular TCP can not efficiently use the link bandwidth. When the peak rate of UDP traffic goes from 5Mbps to Mbps, the bottleneck link utilization drops from 86% to 66%. This verifies that TCP s congestion control algorithm is too conservative under high-speed and long delay networks. Table. Throughputs under burst UDP traffic. BG traffic 5Mbps Mbps 5Mbps Mbps peak rate Regular TCP (86% (85% 45. (66% 44.9 (66% HSTCP (9% (9% (9% (9% CTCP 65. (93% 6 (93% 58.5 (93% (9% In the next experiment, we set DummyNet to have -6 loss rate. Then, we vary the delay of the link. Figure 9 shows the aggregated throughput of four concurrent flows. It shows that regular TCP can utilize the link capacity pretty well under small RTT situations, e.g. 3ms. However, with the increase of link delay, regular TCP has clear performance degradation. CTCP and HSTCP generally perform well under all tested situations, and CTCP slightly outperform HSTCP under longer RTT situation due to the delay-based design in CTCP that induces less packet losses. Throughput (Mbps Regular TCP HSTCP CTCP..... Packet loss rate Figure 8. Throughputs under different packet loss rates. Throughput (Mbps Regular Tcp HSTCP CTCP 7ms ms 8ms 3ms Round Trip Delay Figure 9. Throughput with different RTTs with -6 loss rate. TCP fairness After showing that CTCP is effective in utilizing link bandwidth, we evaluate the TCP fairness property of CTCP. There are many methods that improve the efficiency at the cost of fairness to the regular TCP flows. However, our goal of CTCP is to improve the efficiency and maintain TCP fairness at the same time. To qualify the TCP fairness, we first ran 8 regular TCP flows as baseline. Then, we replaced 4 flows to be the high speed protocols and repeated the experiments under the same condition. We compared the throughput got by regular TCP flows with and without the present of high speed protocols. We used the bandwidth stolen defined in IV.C as an index in our comparisons. The first experiment investigated the TCP fairness under different link packet loss rates. Figure and Figure present the results of HSTCP and CTCP, respectively. The Regular TCP(baseline presents the throughput of 4 regular TCP flows in the baseline test (total 8 regular TCP flows are in tes. The Regular TCP line shows the throughput got of 4 regular TCP flows when they were competing with 4 high-speed protocols. The gap between these two lines demonstrates the throughput reduction of regular TCP flows when there are high-speed protocols. In Figure, we can see when the packet loss is high (>., HSTCP will not degrade the throughput of regular TCP. This is because when the packet loss rate is high, the link is under utilized. Fairness issue only rises when the link is fully utilized. When packet loss is light, HSTCP begins to occupy the buffer more quickly than regular TCP and induces more packet

10 loss events. As a consequence, the regular TCP obtains much less throughput compared to the baseline case. On the contrary, in Figure, when the bottleneck link is fully utilized, the delay-based component begins to retreat early without causing additional self-induced packet losses, and therefore, the competing regular TCP flows will receive similar throughput as in the baseline case. Figure shows the bandwidth stolen. HSTCP can steal up to 7% of bandwidth from regular TCP flows, while throughput reduction of regular TCP when competing with CTCP is less than %. Figure 3 shows the experiment results under different link delays. In this experiment, we fixed the link packet loss rate to be -6, while varied the round trip delay. Again, we see that HSTCP causes significant bandwidth reduction of regular TCP flows, while CTCP keeps good TCP fairness to regular TCP in all test situations. Bandwidth stolen CTCP HSTCP Packet loss rate Figure. Bandwidth Stolen under various packet loss rates. CTCP HSTCP Regular TCP(baseline Regular TCP HSTCP Total throughput Bandwidth Stolen Throughput (Mbps ms ms 8ms 3ms Round Trip Delay..... Packet loss rate Figure. Throughput of HSTCP and Regular TCP flows when competing for same bottleneck. Figure 3. Bandwidth Stolen under different RTTs with -6 packet loss rate..7.6 CTCP HSTCP Regular TCP(baseline Regular TCP CTCP Total throughput Bandwidth stolen.4.3 Throughput (Mbps Peak rate of UDP traffic (Mbps Figure 4. Bandwidth Stolen under burst background traffic Packet loss rate Figure. Throughput of CTCP and Regular TCP flows when competing for same bottleneck. We then repeated the experiment under burst traffic setup. We used the same On/off UDP background traffic pattern as in last section. Figure 4 shows the bandwidth stolen of CTCP and HSTCP in this experiment. We get similar results that HSTCP can cause around 6% throughput reduction of regular TCP, while the throughput reduction cause by CTCP is around %. 3 RTT fairness In this experiment, four high-speed flows were competing for the bottleneck link with different round trip delay. Two of them had shorter delay with 4ms. Two others had longer delay which varied among 4ms, 8ms, ms, and 4ms. The bottleneck link delay is ms, and we set the buffer size to be packets. Table summarizes the throughput ratio between flows with different round trip delay. It is not surprising to see that HSTCP has very severe RTT unfairness because in this experiment, most of packet losses are synchronized. The interesting thing is that CTCP has much improved RTT fairness compared to regular TCP. It is because the delay-based component included in CTCP gives favor to long-delay flows.

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Microsoft PowerPoint - talk8.ppt

Microsoft PowerPoint - talk8.ppt Adaptive Playout Scheduling Using Time-scale Modification Yi Liang, Nikolaus Färber Bernd Girod, Balaji Prabhakar Outline QoS concerns and tradeoffs Jitter adaptation as a playout scheduling scheme Packet

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

Microsoft PowerPoint - ryz_030708_pwo.ppt

Microsoft PowerPoint - ryz_030708_pwo.ppt Long Term Recovery of Seven PWO Crystals Ren-yuan Zhu California Institute of Technology CMS ECAL Week, CERN Introduction 20 endcap and 5 barrel PWO crystals went through (1) thermal annealing at 200 o

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

untitled

untitled 20 90 1998 2001 1 Abstract Under the environment of drastic competitive market, risk and uncertainty that the enterprise faces are greater and greater, the profit ability of enterprise assets rises and

More information

東吳大學

東吳大學 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 i 讀 臨 療 留 館 讀 臨 律 六 礪 讀 不 冷 療 臨 年 裡 歷 練 禮 更 老 林 了 更 臨 不 吝 麗 老 劉 老 論 諸 見 了 年 金 歷 了 年

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 以 系 統 動 力 學 建 構 美 食 餐 廳 異 國 麵 坊 之 管 理 飛 行 模 擬 器 研 究 生 : 簡 蓮 因 撰 指 導 教 授 : 楊 碩 英 博 士 中 華 民 國 九 十 七 年 七 月 致 謝 詞 寫 作 論 文 的 過 程 是 一 段 充 滿 艱 辛 與 淚 水 感 動 與 窩 心 的 歷 程, 感 謝 這 一

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Explore the impact of emotional factors couples do not

More information

附件1:

附件1: 附 件 1: 全 国 优 秀 教 育 硕 士 专 业 学 位 论 文 推 荐 表 单 位 名 称 : 西 南 大 学 论 文 题 目 填 表 日 期 :2014 年 4 月 30 日 数 学 小 组 合 作 学 习 的 课 堂 管 理 攻 硕 期 间 及 获 得 硕 士 学 位 后 一 年 内 获 得 与 硕 士 学 位 论 文 有 关 的 成 果 作 者 姓 名 论 文 答 辩 日 期 学 科 专

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

hks298cover&back

hks298cover&back 2957 6364 2377 3300 2302 1087 www.scout.org.hk scoutcraft@scout.org.hk 2675 0011 5,500 Service and Scouting Recently, I had an opportunity to learn more about current state of service in Hong Kong

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

Microsoft Word - 第四組心得.doc

Microsoft Word - 第四組心得.doc 徐 婉 真 這 四 天 的 綠 島 人 權 體 驗 營 令 我 印 象 深 刻, 尤 其 第 三 天 晚 上 吳 豪 人 教 授 的 那 堂 課, 他 讓 我 聽 到 不 同 於 以 往 的 正 義 之 聲 轉 型 正 義, 透 過 他 幽 默 熱 情 的 語 調 激 起 了 我 對 政 治 的 興 趣, 願 意 在 未 來 多 關 心 社 會 多 了 解 政 治 第 一 天 抵 達 綠 島 不 久,

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

前 言 一 場 交 換 學 生 的 夢, 夢 想 不 只 是 敢 夢, 而 是 也 要 敢 去 實 踐 為 期 一 年 的 交 換 學 生 生 涯, 說 長 不 長, 說 短 不 短 再 長 的 路, 一 步 步 也 能 走 完 ; 再 短 的 路, 不 踏 出 起 步 就 無 法 到 達 這 次

前 言 一 場 交 換 學 生 的 夢, 夢 想 不 只 是 敢 夢, 而 是 也 要 敢 去 實 踐 為 期 一 年 的 交 換 學 生 生 涯, 說 長 不 長, 說 短 不 短 再 長 的 路, 一 步 步 也 能 走 完 ; 再 短 的 路, 不 踏 出 起 步 就 無 法 到 達 這 次 壹 教 育 部 獎 助 國 內 大 學 校 院 選 送 優 秀 學 生 出 國 研 修 之 留 學 生 成 果 報 告 書 奧 地 利 約 翰 克 卜 勒 大 學 (JKU) 留 學 心 得 原 就 讀 學 校 / 科 系 / 年 級 : 長 榮 大 學 / 財 務 金 融 學 系 / 四 年 級 獲 獎 生 姓 名 : 賴 欣 怡 研 修 國 家 : 奧 地 利 研 修 學 校 : 約 翰 克 普

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

我国原奶及乳制品安全生产和质量安全管理研究

我国原奶及乳制品安全生产和质量安全管理研究 密 级 论 文 编 号 中 国 农 业 科 学 院 硕 士 学 位 论 文 我 国 原 奶 及 乳 制 品 质 量 安 全 管 理 研 究 Study on Quality and Safety Management of Raw Milk and Dairy Products in China 申 请 人 : 段 成 立 指 导 教 师 : 叶 志 华 研 究 员 张 蕙 杰 研 究 员 申 请

More information

03施琅「棄留臺灣議」探索.doc

03施琅「棄留臺灣議」探索.doc 38 93 43 59 43 44 1 2 1621 1645 1646 3 1647 1649 4 1 1996 12 121 2 1988 1 54---79 3 1990 2 39 4 1987 8 16 19 1649 27---28 45 1651 5 1656 1662 1664 1667 1668 6 1681 1683 7 13 1958 2 1651 2002 11 67 1961

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I II III IV The theories of leadership seldom explain the difference of male leaders and female leaders. Instead of the assumption that the leaders leading traits and leading styles of two sexes are the

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Fulfillment of the Requirements For the Degree of Master

More information

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63>

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63> 題 目 : 第 三 方 網 上 支 付 之 法 律 問 題 探 究 Title:A study on legal issues of the third-party online payment 姓 名 Name 學 號 Student No. 學 院 Faculty 課 程 Program 專 業 Major 指 導 老 師 Supervisor 日 期 Date : 王 子 瑜 : 1209853J-LJ20-0021

More information

124 第十三期 Conflicts in the Takeover of the Land in Taiwan after the Sino-Japanese War A Case in the Change of the Japanese Names of the Taiwanese Peopl

124 第十三期 Conflicts in the Takeover of the Land in Taiwan after the Sino-Japanese War A Case in the Change of the Japanese Names of the Taiwanese Peopl 123 戰後初期臺灣土地接收的糾紛 以更改日式姓名的臺人遭遇為例 124 第十三期 Conflicts in the Takeover of the Land in Taiwan after the Sino-Japanese War A Case in the Change of the Japanese Names of the Taiwanese People Abstract By Ho Fung-jiao

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

Microsoft Word - 刘藤升答辩修改论文.doc

Microsoft Word - 刘藤升答辩修改论文.doc 武 汉 体 育 学 院 硕 士 学 位 论 文 ( 全 日 制 硕 士 ) 社 会 需 求 视 角 下 武 汉 体 院 乒 乓 球 硕 士 研 究 生 就 业 状 况 研 究 研 究 生 : 刘 藤 升 导 师 : 滕 守 刚 副 教 授 专 业 : 体 育 教 育 训 练 学 研 究 方 向 : 乒 乓 球 教 学 训 练 理 论 与 方 法 2015 年 5 月 分 类 号 : G8 学 校 代

More information

Knowledge and its Place in Nature by Hilary Kornblith

Knowledge and its Place in Nature by Hilary Kornblith Deduction by Daniel Bonevac Chapter 7 Quantified Natural Deduction Quantified Natural Deduction As with truth trees, natural deduction in Q depends on the addition of some new rules to handle the quantifiers.

More information

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for Doreen Virtue, Ph.D. Charles Virtue C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for a Sign... 27 7.

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 i Examinations have long been adopting for the selection of the public officials and become an essential tradition in our country. For centuries, the examination system, incorporated with fairness, has

More information

南華大學數位論文

南華大學數位論文 南華大學 碩士論文 中華民國九十五年六月十四日 Elfin Excel I II III ABSTRACT Since Ming Hwa Yuan Taiwanese Opera Company started to cooperate with the Chinese orchestra, the problem of how the participation of Chinese music

More information

Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化, 鼓 励 替 代

Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化, 鼓 励 替 代 Chinese oil import policies and reforms SINOPEC EDRI 2014.8 Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化,

More information

A study on the Fire Safety of Interior Finishes: Residential Buildings in Kaohsiung City taken as Examples between the interior design of safety and skill tests of Scholastic. A Thesis Submitted to Institute

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF The Study on the New Pension Scheme for Civil Servants Evidence from Kaohsiung County I II 1. III Thesis Abstract Title of Thesis The Study on the New Pension Scheme for Civil Servants: Evidence from Kaohsiung

More information

本人声明

本人声明 Historical Evolution of Performance Evaluation in China and USA 02081226 2002 1 Abstract Performance evaluation is an important aspect in enterprise managementand is regarded as an vital link for related

More information

論文集29-1_前6P.indd

論文集29-1_前6P.indd 土木史研究論文集 Vol.29 2010 年 * ** Abstract Fukuchiyama Line, which locates in suburban of Osaka Megalopolis, has performed a part of Japanese trunk railway network. Because it was chosen as a national railway

More information

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢 中 国 科 学 技 术 大 学 博 士 学 位 论 文 论 文 课 题 : 一 个 新 型 简 易 电 子 直 线 加 速 器 的 关 键 技 术 研 究 学 生 姓 名 : 导 师 姓 名 : 单 位 名 称 : 专 业 名 称 : 研 究 方 向 : 完 成 时 间 : 谢 家 麟 院 士 王 相 綦 教 授 国 家 同 步 辐 射 实 验 室 核 技 术 及 应 用 加 速 器 物 理 2006

More information

202 The Sending Back of The Japanese People in Taiwan in The Beginning Years After the World War II Abstract Su-ying Ou* In August 1945, Japan lost th

202 The Sending Back of The Japanese People in Taiwan in The Beginning Years After the World War II Abstract Su-ying Ou* In August 1945, Japan lost th 201 1945 8 1945 202 The Sending Back of The Japanese People in Taiwan in The Beginning Years After the World War II Abstract Su-ying Ou* In August 1945, Japan lost the war and had to retreat from Taiwan.

More information

摘 要 互 联 网 的 勃 兴 为 草 根 阶 层 书 写 自 我 和 他 人 提 供 了 契 机, 通 过 网 络 自 由 开 放 的 平 台, 网 络 红 人 风 靡 于 虚 拟 世 界 近 年 来, 或 无 心 插 柳, 或 有 意 噱 头, 或 自 我 表 达, 或 幕 后 操 纵, 网 络

摘 要 互 联 网 的 勃 兴 为 草 根 阶 层 书 写 自 我 和 他 人 提 供 了 契 机, 通 过 网 络 自 由 开 放 的 平 台, 网 络 红 人 风 靡 于 虚 拟 世 界 近 年 来, 或 无 心 插 柳, 或 有 意 噱 头, 或 自 我 表 达, 或 幕 后 操 纵, 网 络 上 海 外 国 语 大 学 硕 士 学 位 论 文 论 文 题 目 从 偶 像 符 号 的 消 解 到 消 费 符 号 的 建 构 网 络 红 人 的 形 象 变 迁 研 究 学 科 专 业 传 播 学 届 别 2013 届 姓 名 孙 清 导 师 王 玲 宁 I 摘 要 互 联 网 的 勃 兴 为 草 根 阶 层 书 写 自 我 和 他 人 提 供 了 契 机, 通 过 网 络 自 由 开 放 的

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibilit

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibilit 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 指 導 老 師 : 翁 志 遠 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibility to financially support and to live

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197 BANK OF CHINA LIMITED 3988 2010 8 26 ** ** *** # Alberto TOGNI # # # * # 1 601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999

More information

HC50246_2009

HC50246_2009 Page: 1 of 7 Date: June 2, 2009 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Microsoft Word - A200810-897.doc

Microsoft Word - A200810-897.doc 基 于 胜 任 特 征 模 型 的 结 构 化 面 试 信 度 和 效 度 验 证 张 玮 北 京 邮 电 大 学 经 济 管 理 学 院, 北 京 (100876) E-mail: weeo1984@sina.com 摘 要 : 提 高 结 构 化 面 试 信 度 和 效 度 是 面 试 技 术 研 究 的 核 心 内 容 近 年 来 国 内 有 少 数 学 者 探 讨 过 基 于 胜 任 特 征

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

More information

http / /yxxy. cbpt. cnki. net / % % %

http / /yxxy. cbpt. cnki. net / % % % 2017 3 Mar. 2017 5 2 Chongqing Higher Education Research Vol. 5 No. 2 DOI 10. 15998 /j. cnki. issn1673-8012. 2017. 02. 006 230039 2011 2015 2016 G649. 21 A 1673-8012 2017 02-0037-11 2017-01-03 2015zdjy024

More information

南華大學數位論文

南華大學數位論文 -- Managing Traditional Temples A Case Study of Representative Temples in CHIA-YI i Abstract This research used the methodology of field study historical comparative research, and qualitative interview

More information

1 引言

1 引言 中 国 经 济 改 革 研 究 基 金 会 委 托 课 题 能 力 密 集 型 合 作 医 疗 制 度 的 自 动 运 行 机 制 中 国 农 村 基 本 医 疗 保 障 制 度 的 现 状 与 发 展 的 研 究 课 题 主 持 人 程 漱 兰 中 国 人 民 大 学 农 业 与 农 村 发 展 学 院 课 题 组 2004 年 4 月 2005 年 4 月 1 课 题 组 成 员 名 单 主 持

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

[ ],,,,,,,,,,,,,,, [ ] ; ; ; [ ]F120 [ ]A [ ] X(2018) , :,,,, ( ),,,,,,, [ ] [ ],, 5

[ ],,,,,,,,,,,,,,, [ ] ; ; ; [ ]F120 [ ]A [ ] X(2018) , :,,,, ( ),,,,,,, [ ] [ ],, 5 2018 4 [ ] [ ] ; ; ; [ ]F120 [ ]A [ ]1006-480X(2018)04-0005-14 : ( ) [ ] 2018-03-02 [ ] :jinpei8859@163.com 5 : ( ) ( ) : ( ) ( ) (1983) : 6 2018 4 ; (1983) : : ; : ; : ; ; : W G W G W G 7 :?! : ( ) (

More information

PowerPoint Presentation

PowerPoint Presentation Current Status of the 10G-EPON Power Budget and Improvement David Li, Hisense-Ligent dli@ligentphotonics.com Ligent Supporters Bo Wang, China Telecom David Li, Ligent Photonics Frank Chang, Vitesse Corp.

More information

世新稿件end.doc

世新稿件end.doc Research Center For Taiwan Economic Development (RCTED) 2003 8 1 2 Study of Operational Strategies on Biotechnology Pharmaceutical Products Industry in Taiwan -- Case Study on Sinphar Pharmaceutical Company

More information

Time Estimation of Occurrence of Diabetes-Related Cardiovascular Complications by Ching-Yuan Hu A thesis submitted in partial fulfillment of the requi

Time Estimation of Occurrence of Diabetes-Related Cardiovascular Complications by Ching-Yuan Hu A thesis submitted in partial fulfillment of the requi Time Estimation of Occurrence of Diabetes-Related Cardiovascular Complications by Ching-Yuan Hu Master of Science 2011 Institute of Chinese Medical Sciences University of Macau Time Estimation of Occurrence

More information

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

中 国 药 事 2016 年 7 月 第 30 卷 第 7 期 709 体 外 诊 断 试 剂 是 指 用 生 物 化 学 免 疫 学 微 生 物 学 分 子 生 物 学 等 原 理 或 方 法 制 备, 在 体 外 用 于 对 人 体 疾 病 的 诊 断 筛 查 或 监 测 及 流 行 病 学 调

中 国 药 事 2016 年 7 月 第 30 卷 第 7 期 709 体 外 诊 断 试 剂 是 指 用 生 物 化 学 免 疫 学 微 生 物 学 分 子 生 物 学 等 原 理 或 方 法 制 备, 在 体 外 用 于 对 人 体 疾 病 的 诊 断 筛 查 或 监 测 及 流 行 病 学 调 708 中 国 药 事 2016 年 7 月 第 30 卷 第 7 期 医 院 药 事 2010-2015 年 北 京 医 院 体 外 诊 断 试 剂 采 购 情 况 及 管 理 模 式 探 讨 田 晓 鑫, 刘 蕾 *, 穆 林 ( 北 京 医 院 药 学 部, 北 京 100730) 摘 要 目 的 : 对 我 院 体 外 诊 断 试 剂 采 购 情 况 进 行 评 价 与 分 析, 对 使 用

More information

國立中山大學學位論文典藏.pdf

國立中山大學學位論文典藏.pdf 7 i Abstract Under the globalization trend even the still growing industry of Taiwan Biopharmaceutical will meet the same developing rule Many of the Biotechnology or Pharmaceutical companies are not satisfied

More information

ABSTRACT ABSTRACT Based on analyzing public corporation in foreign countries, this paper studies basic theories of public legal establishment, with our country s reality in the social transferring period

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

...1 Abstract

...1 Abstract Web Online Testing System Based on Web : : :S2002253 : : : 2002 4 1 ...1 Abstract...1...2 1.1...2 1.2...2 1.3...3...5 2.1...5 2.1.1...5 2.1.2...5 2.2...12 2.2.1...12 2.2.2...13 2.2.3...13...18 3.1...18

More information

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63> 論 史 記 五 帝 本 紀 首 黃 帝 之 意 義 林 立 仁 明 志 科 技 大 學 通 識 教 育 中 心 副 教 授 摘 要 太 史 公 司 馬 遷 承 父 著 史 遺 志, 並 以 身 膺 五 百 年 大 運, 上 繼 孔 子 春 秋 之 史 學 文 化 道 統 為 其 職 志, 著 史 記 欲 達 究 天 人 之 際, 通 古 今 之 變, 成 一 家 之 言 之 境 界 然 史 記 百

More information

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

HC20131_2010

HC20131_2010 Page: 1 of 8 Date: April 14, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

广 州 市 花 都 区 公 务 员 培 训 需 求 分 析 的 研 究 A STUDY OF TRAINING NEEDS ANALYSIS ON CIVIL SERVANTS OF HUADU DISTRICT IN GUANGZHOU 作 者 姓 名 : 黄 宁 宁 领 域 ( 方 向 ): 公

广 州 市 花 都 区 公 务 员 培 训 需 求 分 析 的 研 究 A STUDY OF TRAINING NEEDS ANALYSIS ON CIVIL SERVANTS OF HUADU DISTRICT IN GUANGZHOU 作 者 姓 名 : 黄 宁 宁 领 域 ( 方 向 ): 公 广 州 市 花 都 区 公 务 员 培 训 需 求 分 析 的 研 究 分 类 号 :C93 单 位 代 码 :10183 研 究 生 学 号 :201223A022 密 级 : 公 开 研 吉 林 大 学 硕 士 学 位 论 文 ( 专 业 学 位 ) 黄 宁 宁 广 州 市 花 都 区 公 务 员 培 训 需 求 分 析 的 研 究 A STUDY OF TRAINING NEEDS ANALYSIS

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之 研 究, 蓋 稅 務 爭 訟 在 行 訴 訟 中 一 直 占 有 相 當 高 的 比 例, 惟 其 勝 訴 率 一 直 偏 低, 民 87 年 10 月 28 日 行 訴 訟 法 經 幅 修 正 後, 審 級 部 分 由 一 級 一

論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之 研 究, 蓋 稅 務 爭 訟 在 行 訴 訟 中 一 直 占 有 相 當 高 的 比 例, 惟 其 勝 訴 率 一 直 偏 低, 民 87 年 10 月 28 日 行 訴 訟 法 經 幅 修 正 後, 審 級 部 分 由 一 級 一 法 院 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 王 文 杰 博 士 兩 岸 稅 務 爭 訟 制 度 之 比 較 研 究 A comparative study on the system of cross-straits tax litigation 研 究 生 : 羅 希 寧 中 華 民 一 0 一 年 七 月 論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之

More information

2005 Research on the Lucre, Risk, and Development of Native Bankcard Business 2005 3 2003 6.5 45 18, WTO SWOT I Abstract Research on the Lucre, Risk, and Development of Native Bankcard Business Research

More information

% % % % % % ~

% % % % % % ~ 1001-5558 2015 03-0021-16 2010 C91 A 2014 5 2010 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 2010 2010 2181.58 882.99 40.47% 1298.59 59.53% 2013 2232.78 847.29 37.95% 1385.49 62.05% 1990

More information

90 2011 7 1 90 90 90 * 30 1984 1989 4 * 2011 6 1993 1997 1992 1998 2003 5 2004 2007 2008 2010 2008 6 2011 6 * 33% 21% 19% 18% 3% 8 5% * 7 - - - 8 2011 6 * 1921 2011 90 90 90 90 90 1921 1949 1949 16 12

More information

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi U17 10220 UDC624 Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candidate:Chen Hao Tutor: Xue Jinghong

More information

國立高雄大學○○○○○○學系(研究所)(標楷體18號字

國立高雄大學○○○○○○學系(研究所)(標楷體18號字 國 立 高 雄 大 學 都 市 發 展 與 建 築 研 究 所 碩 士 論 文 高 雄 後 勁 地 區 傳 統 民 居 特 徵 之 研 究 The Study of The Characteristic of Traditional Residential Buildings of Houjing District in Kaohsiung 研 究 生 : 許 輝 隆 撰 指 導 教 授 : 陳 啟

More information

Master Thesis_專門用來製作目錄.doc

Master Thesis_專門用來製作目錄.doc Introduction All-IP [1-4] All-IP packet switching long delay time, jitter packet loss All-IP Budget-Based QoS End-to-End QoS (real time on demand) 1 1.1 Circuit Switching Packet Switching DWDM IP VoIP

More information

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing 密 级 : 公 开 学 号 :20081209 硕 士 学 位 论 文 中 医 儿 科 标 准 数 据 库 建 设 研 究 研 究 生 李 楠 指 导 教 师 学 科 专 业 所 在 学 院 毕 业 时 间 韩 新 民 教 授 中 医 儿 科 学 第 一 临 床 医 学 院 2011 年 06 月 Construction of Chinese pediatric standard database

More information

Microsoft PowerPoint - TTCN-Introduction-v5.ppt

Microsoft PowerPoint - TTCN-Introduction-v5.ppt Conformance Testing and TTCN 工研院無線通訊技術部林牧台 / Morton Lin 03-5912360 mtlin@itri.org.tw 1 Outline Introduction and Terminology Conformance Testing Process 3GPP conformance testing and test cases A real world

More information

Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and

Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and increases ulteriorly. When the Coca-Cola company came

More information

<4D6963726F736F667420576F7264202D20A46AA4AFACECA7DEA46ABEC7B1D0AE76ACE3A873AD70B565A6A8AA47B3F8A769A4AFACE33938303637>

<4D6963726F736F667420576F7264202D20A46AA4AFACECA7DEA46ABEC7B1D0AE76ACE3A873AD70B565A6A8AA47B3F8A769A4AFACE33938303637> 大 仁 科 技 大 學 教 師 研 究 計 畫 成 果 報 告 長 期 照 護 中 心 之 室 內 空 氣 品 質 評 估 計 畫 編 號 : 仁 研 9867 執 行 期 限 :98 年 1 月 1 日 至 98 年 12 月 31 日 主 持 人 : 馮 靜 安 執 行 單 位 : 職 業 安 全 衛 生 系 ( 所 ) E-Mail:cafeng@mail.tajen.edu.tw 一 中 文

More information

摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文 學 大 獎 的 肯 定, 對 台 灣 這 塊 土 地 上 的 客 家 人 有 著 深 厚 的 情 感 張 氏 於

摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文 學 大 獎 的 肯 定, 對 台 灣 這 塊 土 地 上 的 客 家 人 有 著 深 厚 的 情 感 張 氏 於 玄 奘 大 學 中 國 語 文 學 系 碩 士 論 文 客 家 安 徒 生 張 捷 明 童 話 研 究 指 導 教 授 : 羅 宗 濤 博 士 研 究 生 : 黃 春 芳 撰 中 華 民 國 一 0 二 年 六 月 摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文

More information

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade]

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade] SSBSE 2015, Bergamo Transformed Search Based Software Engineering: A New Paradigm of SBSE He JIANG, Zhilei Ren, Xiaochen Li, Xiaochen Lai jianghe@dlut.edu.cn School of Software, Dalian Univ. of Tech. Outline

More information

Monetary Policy Regime Shifts under the Zero Lower Bound: An Application of a Stochastic Rational Expectations Equilibrium to a Markov Switching DSGE

Monetary Policy Regime Shifts under the Zero Lower Bound: An Application of a Stochastic Rational Expectations Equilibrium to a Markov Switching DSGE Procedure of Calculating Policy Functions 1 Motivation Previous Works 2 Advantages and Summary 3 Model NK Model with MS Taylor Rule under ZLB Expectations Function Static One-Period Problem of a MS-DSGE

More information

Abstract Due to the improving of living standards, people gradually seek lighting quality from capacityto quality. And color temperature is the important subject of it. According to the research from aboard,

More information

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t)

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t) 2011 5 5 (278 ) China Industrial Economics May 2011 No.5 1 12 (1. 100005; 2. 066004) [ ] : ; ; : ; ; [ ] ; ; ; [ ]F290 [ ]A [ ]1006-480X(2011)05-0047-11 2008 CO 2 ( ) (2009) (GDP) (Binhocker et al. 2008)

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 A feasibility study of the Crisis Management Warning System in the River Example of Keelung River i Recently, because of the over development in the urban area and the natural geological nature, people

More information

吴 郁 玲 等 : 农 户 对 宅 基 地 使 用 权 确 权 效 应 的 认 知 研 究 以 武 汉 市 为 例 29 the paper tried to provide a basis to improve the confirmation policy efficiency and to f

吴 郁 玲 等 : 农 户 对 宅 基 地 使 用 权 确 权 效 应 的 认 知 研 究 以 武 汉 市 为 例 29 the paper tried to provide a basis to improve the confirmation policy efficiency and to f 第 30 卷 第 4 期 2016 年 4 月 中国土地科学 China Land Sciences Vol.30 No.4 Apr.,2016 doi: 10.11994/zgtdkx.20160523.153245 农户对宅基地使用权确权效应的认知研究 以武汉市为例 吴郁玲 1 侯 娇 1 冯忠垒 2 周 勇 1 1. 华中师范大学城环学院 湖北 武汉 430079 2. 中国地质大学 武汉 经济管理学院

More information